gdk3 1.2.0-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +53 -0
- data/ext/gdk3/depend +11 -0
- data/ext/gdk3/extconf.rb +127 -0
- data/ext/gdk3/gdk3.def +12 -0
- data/ext/gdk3/init.c +35 -0
- data/ext/gdk3/rbgdk.c +540 -0
- data/ext/gdk3/rbgdk3.h +71 -0
- data/ext/gdk3/rbgdk3conversions.h +118 -0
- data/ext/gdk3/rbgdk3private.h +93 -0
- data/ext/gdk3/rbgdkatom.c +122 -0
- data/ext/gdk3/rbgdkcairo.c +95 -0
- data/ext/gdk3/rbgdkcolor.c +137 -0
- data/ext/gdk3/rbgdkconst.c +33 -0
- data/ext/gdk3/rbgdkcursor.c +99 -0
- data/ext/gdk3/rbgdkdevice.c +197 -0
- data/ext/gdk3/rbgdkdisplay.c +482 -0
- data/ext/gdk3/rbgdkdisplaymanager.c +55 -0
- data/ext/gdk3/rbgdkdragcontext.c +191 -0
- data/ext/gdk3/rbgdkdraw.c +520 -0
- data/ext/gdk3/rbgdkevent.c +926 -0
- data/ext/gdk3/rbgdkgeometry.c +252 -0
- data/ext/gdk3/rbgdkkeymap.c +151 -0
- data/ext/gdk3/rbgdkkeyval.c +108 -0
- data/ext/gdk3/rbgdkpango.c +197 -0
- data/ext/gdk3/rbgdkpangorenderer.c +144 -0
- data/ext/gdk3/rbgdkpixbuf.c +176 -0
- data/ext/gdk3/rbgdkproperty.c +305 -0
- data/ext/gdk3/rbgdkrectangle.c +140 -0
- data/ext/gdk3/rbgdkrgb.c +199 -0
- data/ext/gdk3/rbgdkrgba.c +142 -0
- data/ext/gdk3/rbgdkscreen.c +443 -0
- data/ext/gdk3/rbgdkselection.c +146 -0
- data/ext/gdk3/rbgdkthreads.c +77 -0
- data/ext/gdk3/rbgdktimecoord.c +133 -0
- data/ext/gdk3/rbgdkvisual.c +251 -0
- data/ext/gdk3/rbgdkwindow.c +1044 -0
- data/ext/gdk3/rbgdkwindowattr.c +191 -0
- data/ext/gdk3/rbgdkx11.c +102 -0
- data/ext/gdk3/rbgdkx11x11window.c +66 -0
- data/extconf.rb +49 -0
- data/lib/1.8/gdk3.so +0 -0
- data/lib/1.9/gdk3.so +0 -0
- data/lib/gdk3.rb +3 -0
- data/lib/gdk3/base.rb +50 -0
- data/lib/gdk3/deprecated.rb +152 -0
- data/vendor/local/bin/gtk-launch.exe +0 -0
- data/vendor/local/bin/gtk-query-immodules-3.0.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe.manifest +17 -0
- data/vendor/local/bin/gtk3-demo-application.exe +0 -0
- data/vendor/local/bin/gtk3-demo.exe +0 -0
- data/vendor/local/bin/gtk3-widget-factory.exe +0 -0
- data/vendor/local/bin/libgailutil-3-0.dll +0 -0
- data/vendor/local/bin/libgdk-3-0.dll +0 -0
- data/vendor/local/bin/libgtk-3-0.dll +0 -0
- data/vendor/local/etc/gtk-3.0/im-multipress.conf +22 -0
- data/vendor/local/etc/gtk-3.0/settings.ini +2 -0
- data/vendor/local/include/gail-3.0/libgail-util/gail-util.h +2 -0
- data/vendor/local/include/gail-3.0/libgail-util/gailmisc.h +76 -0
- data/vendor/local/include/gail-3.0/libgail-util/gailtextutil.h +85 -0
- data/vendor/local/include/gtk-3.0/gdk/gdk.h +61 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkapplaunchcontext.h +60 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkcairo.h +63 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkcolor.h +77 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkconfig.h +22 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkcursor.h +240 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkdevice.h +237 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkdevicemanager.h +44 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkdisplay.h +141 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkdisplaymanager.h +55 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkdnd.h +153 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkenumtypes.h +105 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkevents.h +1277 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkkeys.h +142 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms-compat.h +2300 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkkeysyms.h +2309 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkmain.h +122 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkpango.h +56 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkpixbuf.h +52 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkprivate.h +40 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkproperty.h +91 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkrectangle.h +51 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkrgba.h +62 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkscreen.h +100 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkselection.h +208 -0
- data/vendor/local/include/gtk-3.0/gdk/gdktestutils.h +58 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkthreads.h +105 -0
- data/vendor/local/include/gtk-3.0/gdk/gdktypes.h +421 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkversionmacros.h +220 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkvisual.h +123 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkwin32.h +105 -0
- data/vendor/local/include/gtk-3.0/gdk/gdkwindow.h +884 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32cursor.h +54 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32display.h +54 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32displaymanager.h +47 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32dnd.h +47 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32keys.h +47 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32screen.h +54 -0
- data/vendor/local/include/gtk-3.0/gdk/win32/gdkwin32window.h +54 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h +157 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h +80 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkfontsel.h +165 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h +100 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbbox.h +65 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhbox.h +67 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhpaned.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscale.h +68 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhseparator.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkhsv.h +106 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkrc.h +322 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkstyle.h +703 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktable.h +162 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h +74 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbbox.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvbox.h +65 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvpaned.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscale.h +74 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h +70 -0
- data/vendor/local/include/gtk-3.0/gtk/deprecated/gtkvseparator.h +70 -0
- data/vendor/local/include/gtk-3.0/gtk/gtk.h +253 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaboutdialog.h +169 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaccelgroup.h +209 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaccellabel.h +105 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaccelmap.h +93 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaccessible.h +75 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaction.h +166 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkactionable.h +77 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkactiongroup.h +238 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkactivatable.h +85 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkadjustment.h +121 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkalignment.h +96 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkappchooser.h +49 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkappchooserbutton.h +89 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkappchooserdialog.h +78 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkappchooserwidget.h +103 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkapplication.h +128 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkapplicationwindow.h +75 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkarrow.h +81 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkaspectframe.h +84 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkassistant.h +188 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbbox.h +90 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbin.h +79 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbindings.h +189 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkborder.h +66 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbox.h +112 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbuildable.h +173 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbuilder.h +179 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkbutton.h +130 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcalendar.h +169 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellarea.h +482 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellareabox.h +87 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellareacontext.h +135 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcelleditable.h +62 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcelllayout.h +135 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderer.h +280 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrendereraccel.h +84 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderercombo.h +65 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h +68 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererprogress.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspin.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrendererspinner.h +67 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertext.h +75 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellrenderertoggle.h +82 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcellview.h +95 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcheckbutton.h +80 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcheckmenuitem.h +98 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkclipboard.h +237 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcolorbutton.h +108 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooser.h +87 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooserdialog.h +68 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcolorchooserwidget.h +71 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcolorutils.h +48 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcombobox.h +147 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcomboboxtext.h +88 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcontainer.h +227 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcssprovider.h +96 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkcsssection.h +97 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkdebug.h +70 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkdialog.h +181 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkdnd.h +212 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkdrawingarea.h +74 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkeditable.h +113 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkentry.h +304 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkentrybuffer.h +133 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkentrycompletion.h +154 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkenums.h +1041 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkeventbox.h +79 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkexpander.h +107 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfilechooser.h +247 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserbutton.h +81 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserdialog.h +69 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfilechooserwidget.h +65 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfilefilter.h +116 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfixed.h +91 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfontbutton.h +99 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfontchooser.h +118 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfontchooserdialog.h +67 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkfontchooserwidget.h +71 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkframe.h +96 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkgradient.h +66 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkgrid.h +110 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkiconfactory.h +183 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkicontheme.h +233 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkiconview.h +266 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimage.h +168 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimagemenuitem.h +90 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimcontext.h +126 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimcontextinfo.h +44 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimcontextsimple.h +74 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimmodule.h +34 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkimmulticontext.h +73 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkinfobar.h +116 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkinvisible.h +77 -0
- data/vendor/local/include/gtk-3.0/gtk/gtklabel.h +176 -0
- data/vendor/local/include/gtk-3.0/gtk/gtklayout.h +108 -0
- data/vendor/local/include/gtk-3.0/gtk/gtklevelbar.h +127 -0
- data/vendor/local/include/gtk-3.0/gtk/gtklinkbutton.h +100 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkliststore.h +133 -0
- data/vendor/local/include/gtk-3.0/gtk/gtklockbutton.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmain.h +172 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmenu.h +215 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmenubar.h +90 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmenubutton.h +94 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmenuitem.h +128 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmenushell.h +123 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmenutoolbutton.h +79 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmessagedialog.h +132 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmisc.h +89 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmodules.h +58 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkmountoperation.h +81 -0
- data/vendor/local/include/gtk-3.0/gtk/gtknotebook.h +250 -0
- data/vendor/local/include/gtk-3.0/gtk/gtknumerableicon.h +87 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkoffscreenwindow.h +64 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkorientable.h +58 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkoverlay.h +79 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkpagesetup.h +106 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkpaned.h +105 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkpapersize.h +140 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkplug.h +97 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkprintcontext.h +69 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkprintoperation.h +280 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkprintoperationpreview.h +79 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkprintsettings.h +248 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkprogressbar.h +97 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkradioaction.h +89 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkradiobutton.h +92 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkradiomenuitem.h +91 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkradiotoolbutton.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrange.h +167 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentaction.h +78 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooser.h +203 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserdialog.h +78 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentchoosermenu.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentchooserwidget.h +68 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentfilter.h +125 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkrecentmanager.h +234 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkscale.h +114 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkscalebutton.h +99 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkscrollable.h +60 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkscrollbar.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkscrolledwindow.h +136 -0
- data/vendor/local/include/gtk-3.0/gtk/gtksearchentry.h +73 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkselection.h +192 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkseparator.h +75 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkseparatormenuitem.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkseparatortoolitem.h +70 -0
- data/vendor/local/include/gtk-3.0/gtk/gtksettings.h +127 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkshow.h +37 -0
- data/vendor/local/include/gtk-3.0/gtk/gtksizegroup.h +95 -0
- data/vendor/local/include/gtk-3.0/gtk/gtksizerequest.h +57 -0
- data/vendor/local/include/gtk-3.0/gtk/gtksocket.h +84 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkspinbutton.h +213 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkspinner.h +71 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkstatusbar.h +101 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkstatusicon.h +147 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkstock.h +1029 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkstylecontext.h +1014 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkstyleproperties.h +117 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkstyleprovider.h +126 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkswitch.h +93 -0
- data/vendor/local/include/gtk-3.0/gtk/gtksymboliccolor.h +57 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktestutils.h +72 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextattributes.h +180 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextbuffer.h +408 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextbufferrichtext.h +126 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextchild.h +83 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextdisplay.h +101 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextiter.h +306 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextlayout.h +433 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextmark.h +103 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktexttag.h +115 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktexttagtable.h +96 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktextview.h +298 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkthemingengine.h +260 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoggleaction.h +92 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktogglebutton.h +93 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoggletoolbutton.h +75 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoolbar.h +135 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoolbutton.h +97 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoolitem.h +124 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoolitemgroup.h +104 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoolpalette.h +140 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktoolshell.h +89 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktooltip.h +75 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreednd.h +123 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreemodel.h +305 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreemodelfilter.h +144 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreemodelsort.h +84 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreeselection.h +146 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreesortable.h +123 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreestore.h +147 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreeview.h +501 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktreeviewcolumn.h +224 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktypebuiltins.h +307 -0
- data/vendor/local/include/gtk-3.0/gtk/gtktypes.h +56 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkuimanager.h +171 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkversion.h +102 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkviewport.h +96 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkvolumebutton.h +70 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkwidget.h +896 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkwidgetpath.h +132 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkwindow.h +351 -0
- data/vendor/local/include/gtk-3.0/gtk/gtkx.h +28 -0
- data/vendor/local/lib/gailutil.def +14 -0
- data/vendor/local/lib/gdk-win32-3.0.def +514 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules.cache +40 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.la +41 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.la +41 -0
- data/vendor/local/lib/gtk-win32-3.0.def +3790 -0
- data/vendor/local/lib/libgailutil-3.dll.a +0 -0
- data/vendor/local/lib/libgailutil-3.la +41 -0
- data/vendor/local/lib/libgdk-3.dll.a +0 -0
- data/vendor/local/lib/libgdk-3.la +41 -0
- data/vendor/local/lib/libgtk-3.dll.a +0 -0
- data/vendor/local/lib/libgtk-3.la +41 -0
- data/vendor/local/lib/pkgconfig/gail-3.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/gdk-3.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/gdk-win32-3.0.pc +13 -0
- data/vendor/local/lib/pkgconfig/gtk+-3.0.pc +16 -0
- data/vendor/local/lib/pkgconfig/gtk+-win32-3.0.pc +16 -0
- data/vendor/local/share/aclocal/gtk-3.0.m4 +219 -0
- data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
- data/vendor/local/share/glib-2.0/schemas/org.gtk.Demo.gschema.xml +17 -0
- data/vendor/local/share/glib-2.0/schemas/org.gtk.Settings.ColorChooser.gschema.xml +13 -0
- data/vendor/local/share/glib-2.0/schemas/org.gtk.Settings.FileChooser.gschema.xml +66 -0
- data/vendor/local/share/gtk-3.0/demo/alphatest.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/apple-red.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/application.c +485 -0
- data/vendor/local/share/gtk-3.0/demo/application.ui +104 -0
- data/vendor/local/share/gtk-3.0/demo/appwindow.c +570 -0
- data/vendor/local/share/gtk-3.0/demo/assistant.c +201 -0
- data/vendor/local/share/gtk-3.0/demo/background.jpg +0 -0
- data/vendor/local/share/gtk-3.0/demo/builder.c +74 -0
- data/vendor/local/share/gtk-3.0/demo/button_box.c +127 -0
- data/vendor/local/share/gtk-3.0/demo/changedisplay.c +654 -0
- data/vendor/local/share/gtk-3.0/demo/clipboard.c +326 -0
- data/vendor/local/share/gtk-3.0/demo/colorsel.c +133 -0
- data/vendor/local/share/gtk-3.0/demo/combobox.c +473 -0
- data/vendor/local/share/gtk-3.0/demo/css_accordion.c +78 -0
- data/vendor/local/share/gtk-3.0/demo/css_accordion.css +52 -0
- data/vendor/local/share/gtk-3.0/demo/css_basics.c +122 -0
- data/vendor/local/share/gtk-3.0/demo/css_basics.css +22 -0
- data/vendor/local/share/gtk-3.0/demo/css_multiplebgs.c +171 -0
- data/vendor/local/share/gtk-3.0/demo/css_multiplebgs.css +136 -0
- data/vendor/local/share/gtk-3.0/demo/css_pixbufs.c +127 -0
- data/vendor/local/share/gtk-3.0/demo/css_pixbufs.css +76 -0
- data/vendor/local/share/gtk-3.0/demo/css_shadows.c +147 -0
- data/vendor/local/share/gtk-3.0/demo/css_shadows.css +44 -0
- data/vendor/local/share/gtk-3.0/demo/cssview.css +41 -0
- data/vendor/local/share/gtk-3.0/demo/demo.ui +266 -0
- data/vendor/local/share/gtk-3.0/demo/dialog.c +175 -0
- data/vendor/local/share/gtk-3.0/demo/drawingarea.c +296 -0
- data/vendor/local/share/gtk-3.0/demo/editable_cells.c +392 -0
- data/vendor/local/share/gtk-3.0/demo/entry_buffer.c +66 -0
- data/vendor/local/share/gtk-3.0/demo/entry_completion.c +98 -0
- data/vendor/local/share/gtk-3.0/demo/expander.c +59 -0
- data/vendor/local/share/gtk-3.0/demo/fancy.css +65 -0
- data/vendor/local/share/gtk-3.0/demo/floppybuddy.gif +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-applets.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-calendar.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-foot.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-fs-directory.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-fs-regular.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-gimp.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-gmush.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnome-gsame.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gnu-keys.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gtk-logo-24.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gtk-logo-48.png +0 -0
- data/vendor/local/share/gtk-3.0/demo/gtk-logo-rgb.gif +0 -0
- data/vendor/local/share/gtk-3.0/demo/hypertext.c +291 -0
- data/vendor/local/share/gtk-3.0/demo/iconview.c +371 -0
- data/vendor/local/share/gtk-3.0/demo/iconview_edit.c +158 -0
- data/vendor/local/share/gtk-3.0/demo/images.c +472 -0
- data/vendor/local/share/gtk-3.0/demo/infobar.c +109 -0
- data/vendor/local/share/gtk-3.0/demo/links.c +90 -0
- data/vendor/local/share/gtk-3.0/demo/list_store.c +325 -0
- data/vendor/local/share/gtk-3.0/demo/menus.c +171 -0
- data/vendor/local/share/gtk-3.0/demo/menus.ui +107 -0
- data/vendor/local/share/gtk-3.0/demo/offscreen_window.c +615 -0
- data/vendor/local/share/gtk-3.0/demo/offscreen_window2.c +526 -0
- data/vendor/local/share/gtk-3.0/demo/overlay.c +181 -0
- data/vendor/local/share/gtk-3.0/demo/panes.c +205 -0
- data/vendor/local/share/gtk-3.0/demo/pickers.c +89 -0
- data/vendor/local/share/gtk-3.0/demo/pixbufs.c +261 -0
- data/vendor/local/share/gtk-3.0/demo/printing.c +199 -0
- data/vendor/local/share/gtk-3.0/demo/reset.css +68 -0
- data/vendor/local/share/gtk-3.0/demo/rotated_text.c +236 -0
- data/vendor/local/share/gtk-3.0/demo/search_entry.c +322 -0
- data/vendor/local/share/gtk-3.0/demo/sizegroup.c +164 -0
- data/vendor/local/share/gtk-3.0/demo/spinner.c +95 -0
- data/vendor/local/share/gtk-3.0/demo/stock_browser.c +535 -0
- data/vendor/local/share/gtk-3.0/demo/textscroll.c +201 -0
- data/vendor/local/share/gtk-3.0/demo/textview.c +634 -0
- data/vendor/local/share/gtk-3.0/demo/theming.ui +319 -0
- data/vendor/local/share/gtk-3.0/demo/theming_custom_css.c +66 -0
- data/vendor/local/share/gtk-3.0/demo/theming_style_classes.c +58 -0
- data/vendor/local/share/gtk-3.0/demo/toolpalette.c +794 -0
- data/vendor/local/share/gtk-3.0/demo/transparent.c +248 -0
- data/vendor/local/share/gtk-3.0/demo/tree_store.c +450 -0
- data/vendor/local/share/gtk-3.0/demo/ui_manager.c +235 -0
- data/vendor/local/share/gtk-3.0/gtkbuilder.rng +305 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailMisc.html +434 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailTextUtil.html +291 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3.devhelp2 +29 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/index.html +45 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/index.sgml +26 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/libgail-util-main.html +41 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util3/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/GdkDevice.html +1532 -0
- data/vendor/local/share/gtk-doc/html/gdk3/GdkDeviceManager.html +445 -0
- data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplay.html +1482 -0
- data/vendor/local/share/gtk-doc/html/gdk3/GdkDisplayManager.html +354 -0
- data/vendor/local/share/gtk-doc/html/gdk3/GdkScreen.html +1213 -0
- data/vendor/local/share/gtk-doc/html/gdk3/X_cursor.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/annotation-glossary.html +98 -0
- data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-0.html +298 -0
- data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-2.html +71 -0
- data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-4.html +130 -0
- data/vendor/local/share/gtk-doc/html/gdk3/api-index-3-6.html +42 -0
- data/vendor/local/share/gtk-doc/html/gdk3/api-index-deprecated.html +158 -0
- data/vendor/local/share/gtk-doc/html/gdk3/api-index-full.html +2711 -0
- data/vendor/local/share/gtk-doc/html/gdk3/arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/based_arrow_down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/based_arrow_up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/boat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/bogosity.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/bottom_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/bottom_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/bottom_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/bottom_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/box_spiral.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/center_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/circle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/clock.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/coffee_mug.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/cross_reverse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/crosshair.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/diamond_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/dot.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/dotbox.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/draft_large.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/draft_small.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/draped_box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/exchange.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/fleur.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Application-launching.html +379 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cairo-Interaction.html +453 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Colors.html +296 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Cursors.html +1055 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Drag-and-Drop.html +949 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Event-Structures.html +1873 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Events.html +1839 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-General.html +952 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Keyboard-Handling.html +1180 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pango-Interaction.html +427 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Pixbufs.html +206 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Points-Rectangles-and-Regions.html +199 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Properties-and-Atoms.html +598 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-RGBA-Colors.html +326 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Selections.html +622 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Testing.html +230 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Threads.html +1050 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Visuals.html +777 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-Windows.html +6690 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3-X-Window-System-Interaction.html +2083 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gdk3.devhelp2 +1042 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gobbler.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/gumby.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/hand1.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/hand2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/heart.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/icon.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/index.html +120 -0
- data/vendor/local/share/gtk-doc/html/gdk3/index.sgml +1162 -0
- data/vendor/local/share/gtk-doc/html/gdk3/iron_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/left_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/left_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/left_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/leftbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/ll_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/lr_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/man.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/middlebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/mouse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/pencil.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/pirate.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/plus.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/question_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/reference.html +113 -0
- data/vendor/local/share/gtk-doc/html/gdk3/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/right_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/right_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/right_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/rightbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/rotated-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/rtl_logo.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sailboat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sb_down_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sb_h_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sb_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sb_right_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sb_up_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sb_v_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/shuttle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/sizing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/spider.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/spraycan.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/star.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gdk3/target.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/tcross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/top_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/top_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/top_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/top_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/top_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/trek.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/ul_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/umbrella.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/ur_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/watch.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk3/xterm.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/AbstractObjects.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk3/Actions.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk3/Application.html +42 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ApplicationChoosing.html +44 -0
- data/vendor/local/share/gtk-doc/html/gtk3/Builder.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ButtonWidgets.html +62 -0
- data/vendor/local/share/gtk-doc/html/gtk3/DisplayWidgets.html +59 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAboutDialog.html +1501 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAccelLabel.html +400 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAccessible.html +200 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAction.html +1580 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkActionGroup.html +1389 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkActionable.html +425 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkActivatable.html +876 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAdjustment.html +845 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAlignment.html +411 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooser.html +212 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserButton.html +518 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserDialog.html +297 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAppChooserWidget.html +712 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkApplication.html +1877 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkApplicationWindow.html +788 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkArrow.html +208 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAspectFrame.html +241 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkAssistant.html +1389 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkBin.html +132 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkBox.html +683 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkBuildable.html +677 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkBuilder.html +1354 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkButton.html +1292 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkButtonBox.html +432 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCalendar.html +1031 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellArea.html +3227 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaBox.html +369 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellAreaContext.html +675 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellEditable.html +286 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellLayout.html +750 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRenderer.html +1596 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererAccel.html +275 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererCombo.html +228 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererPixbuf.html +203 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererProgress.html +202 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpin.html +159 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererSpinner.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererText.html +653 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellRendererToggle.html +372 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCellView.html +729 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckButton.html +198 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCheckMenuItem.html +462 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkColorButton.html +607 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooser.html +370 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserDialog.html +144 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkColorChooserWidget.html +150 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelection.html +889 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkColorSelectionDialog.html +200 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBox.html +1893 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkComboBoxText.html +519 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkContainer.html +1692 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkCssProvider.html +2108 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkDialog.html +1288 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkDrawingArea.html +234 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkEditable.html +723 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkEntry.html +3957 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryBuffer.html +627 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkEntryCompletion.html +1331 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkEventBox.html +305 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkExpander.html +851 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooser.html +3403 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserButton.html +486 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserDialog.html +396 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFileChooserWidget.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFileFilter.html +595 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFixed.html +253 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFontButton.html +609 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooser.html +605 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserDialog.html +137 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFontChooserWidget.html +125 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelection.html +571 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFontSelectionDialog.html +400 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkFrame.html +464 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkGrid.html +701 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHBox.html +147 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHButtonBox.html +134 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHPaned.html +115 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHSV.html +445 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHScale.html +172 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHScrollbar.html +128 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHSeparator.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkHandleBox.html +514 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContext.html +1027 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkIMContextSimple.html +150 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkIMMulticontext.html +183 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkIconTheme.html +1755 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkIconView.html +2896 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkImage.html +1349 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkImageMenuItem.html +486 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkInfoBar.html +764 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkInvisible.html +205 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkLabel.html +2208 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkLayout.html +518 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkLevelBar.html +782 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkLinkButton.html +369 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkListStore.html +1159 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkLockButton.html +259 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMenu.html +1527 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuBar.html +369 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuButton.html +535 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuItem.html +940 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuShell.html +904 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMenuToolButton.html +387 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMessageDialog.html +814 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkMisc.html +296 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkNotebook.html +2219 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkNumerableIcon.html +557 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkOffscreenWindow.html +187 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkOverlay.html +229 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetup.html +1031 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPageSetupUnixDialog.html +254 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPaned.html +783 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPaperSize.html +905 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPlug.html +388 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintContext.html +571 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintJob.html +1133 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintSettings.html +2948 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPrintUnixDialog.html +919 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkPrinter.html +1003 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkProgressBar.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioAction.html +451 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioButton.html +586 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioMenuItem.html +436 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRadioToolButton.html +316 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRange.html +1365 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentAction.html +279 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooser.html +1415 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserDialog.html +247 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserMenu.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentChooserWidget.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentFilter.html +685 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkRecentManager.html +1641 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkScale.html +726 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkScaleButton.html +546 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollable.html +452 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkScrollbar.html +194 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkScrolledWindow.html +1106 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSearchEntry.html +118 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparator.html +114 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorMenuItem.html +107 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSeparatorToolItem.html +199 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSettings.html +1357 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSizeGroup.html +487 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSocket.html +360 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinButton.html +1380 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSpinner.html +173 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusIcon.html +1743 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkStatusbar.html +441 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkStyle.html +2534 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleContext.html +4505 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkStyleProvider.html +324 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkSwitch.html +248 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTable.html +897 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTearoffMenuItem.html +135 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTextBuffer.html +3895 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTextIter.html +3183 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTextMark.html +342 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTag.html +1124 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTextTagTable.html +410 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTextView.html +3390 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkThemingEngine.html +1197 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleAction.html +335 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleButton.html +518 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToggleToolButton.html +268 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToolButton.html +677 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItem.html +1139 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToolItemGroup.html +755 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToolPalette.html +1037 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToolShell.html +425 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkToolbar.html +946 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTooltip.html +432 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModel.html +2814 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelFilter.html +742 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeModelSort.html +591 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSelection.html +891 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeSortable.html +481 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeStore.html +1108 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeView.html +4864 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkTreeViewColumn.html +2067 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkUIManager.html +1467 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVBox.html +162 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVButtonBox.html +134 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVPaned.html +115 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVScale.html +176 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVScrollbar.html +132 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVSeparator.html +120 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkViewport.html +387 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkVolumeButton.html +135 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkWidget.html +12811 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkWindow.html +4647 -0
- data/vendor/local/share/gtk-doc/html/gtk3/GtkWindowGroup.html +250 -0
- data/vendor/local/share/gtk-doc/html/gtk3/LayoutContainers.html +91 -0
- data/vendor/local/share/gtk-doc/html/gtk3/MenusAndCombos.html +93 -0
- data/vendor/local/share/gtk-doc/html/gtk3/MiscObjects.html +69 -0
- data/vendor/local/share/gtk-doc/html/gtk3/NumericEntry.html +60 -0
- data/vendor/local/share/gtk-doc/html/gtk3/Ornaments.html +44 -0
- data/vendor/local/share/gtk-doc/html/gtk3/PlugSocket.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk3/Printing.html +59 -0
- data/vendor/local/share/gtk-doc/html/gtk3/RecentDocuments.html +51 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ScrollingWidgets.html +47 -0
- data/vendor/local/share/gtk-doc/html/gtk3/SelectorWidgets.html +86 -0
- data/vendor/local/share/gtk-doc/html/gtk3/TextWidget.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk3/TextWidgetObjects.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk3/TreeWidget.html +556 -0
- data/vendor/local/share/gtk-doc/html/gtk3/TreeWidgetObjects.html +115 -0
- data/vendor/local/share/gtk-doc/html/gtk3/WindowWidgets.html +56 -0
- data/vendor/local/share/gtk-doc/html/gtk3/aboutdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/accel-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/annotation-glossary.html +110 -0
- data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-0.html +1901 -0
- data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-2.html +378 -0
- data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-4.html +322 -0
- data/vendor/local/share/gtk-doc/html/gtk3/api-index-3-6.html +332 -0
- data/vendor/local/share/gtk-doc/html/gtk3/api-index-deprecated.html +1006 -0
- data/vendor/local/share/gtk-doc/html/gtk3/api-index-full.html +22583 -0
- data/vendor/local/share/gtk-doc/html/gtk3/appchooserbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/appchooserdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/application-exit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/arrows.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/assistant.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/background.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-gnome.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-osx.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/bloatpad-xfce.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/border1.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/border2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/border3.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/box-expand.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/box-packing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ch02.html +252 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ch03.html +178 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ch24s02.html +1407 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ch26s02.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ch28s02.html +117 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ch28s03.html +70 -0
- data/vendor/local/share/gtk-doc/html/gtk3/chap-drawing-model.html +461 -0
- data/vendor/local/share/gtk-doc/html/gtk3/check-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/checklist-gdkeventexpose-region.html +82 -0
- data/vendor/local/share/gtk-doc/html/gtk3/checklist-modifiers.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk3/checklist-named-icons.html +40 -0
- data/vendor/local/share/gtk-doc/html/gtk3/checks.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/color-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/colorchooser.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/colorsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/combo-box-entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/combo-box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/dialog-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/dialog-information.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/dialog-password.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/dialog-question.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/dialog-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-new.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-open.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-print-preview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-print.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-properties.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-revert-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-revert-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-save-as.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/document-save.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/down-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/down-end.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/down-start.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/drawing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/drive-harddisk.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ease-in-out.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ease-in.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ease-out.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/ease.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-clear.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-copy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-cut.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-delete.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-find-replace.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-find.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-paste.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-redo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-redo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-select-all.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-undo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/edit-undo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/expanders.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/extensions.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/figure-hierarchical-drawing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/figure-windowed-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/file-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/filechooser.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/focus.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/folder.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/font-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/fontchooser.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/fontsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-indent-less-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-indent-less-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-indent-more-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-indent-more-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-justify-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-justify-fill.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-justify-left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-justify-right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-text-bold.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-text-italic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-text-strikethrough.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/format-text-underline.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/frame-gap.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/frame.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/frames.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/glossary.html +312 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-bottom.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-first-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-first-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-jump-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-jump-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-last-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-last-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-next-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-next-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-previous-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-previous-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-top.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/go-up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gradient1.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gradient2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gradient3.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gradient4.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/grid-packing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-apply.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-broadway.html +55 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-building.html +459 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-cancel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-caps-lock-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-color-picker.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-compiling.html +161 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-connect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-convert.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-disconnect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-dnd-multiple.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-dnd.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-edit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-font.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-getting-started.html +1095 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-index.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-launch.html +72 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-2-to-3.html +688 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkGrid.html +102 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-bonus-points.html +136 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-checklist.html +221 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-css.html +437 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parser-extensions.html +69 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext-parsing.html +82 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-GtkStyleContext.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-checklist.html +164 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-smclient-GtkApplication.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-theme-GtkStyleContext-engines.html +133 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-migrating-unique-GtkApplication.html +228 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-no.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-ok.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-reverse-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-orientation-reverse-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-osx.html +54 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-page-setup.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-preferences.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-query-immodules-3.0.html +110 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-question-index.html +1395 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-resources.html +146 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-running.html +427 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-select-color.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-undelete-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-undelete-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-update-icon-cache.html +106 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-windows.html +93 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-x11.html +122 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk-yes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk.html +187 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Accelerator-Maps.html +674 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Bindings.html +920 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Clipboards.html +1622 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Drag-and-Drop.html +1483 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Feature-Test-Macros.html +346 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Filesystem-utilities.html +368 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-General.html +1325 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkGradient.html +346 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkStyleProperties.html +590 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkSymbolicColor.html +420 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkTreeView-drag-and-drop.html +452 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-GtkWidgetPath.html +1361 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-High-level-Printing-API.html +2748 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Keyboard-Accelerators.html +1143 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Orientable.html +173 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Resource-Files.html +2004 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Selections.html +1844 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Standard-Enumerations.html +1753 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Stock-Items.html +1587 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Testing.html +646 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3-Themeable-Stock-Images.html +1730 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtk3.devhelp2 +6619 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtkbase.html +76 -0
- data/vendor/local/share/gtk-doc/html/gtk3/gtkobjects.html +670 -0
- data/vendor/local/share/gtk-doc/html/gtk3/handles.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/hello-world.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/help-about.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/help-contents.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/icon-view.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/image-missing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/image.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/index.html +903 -0
- data/vendor/local/share/gtk-doc/html/gtk3/index.sgml +8183 -0
- data/vendor/local/share/gtk-doc/html/gtk3/label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-btlr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-btrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-lrbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-lrtb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-rlbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-rltb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-tblr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/layout-tbrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/left-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/left-end.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/left-start.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/levelbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/linear.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/link-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/list-add.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/list-and-tree.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/list-remove.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/lock-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-locked.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-sorry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/lockbutton-unlocked.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/lockbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-floppy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-optical.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-playback-pause.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-playback-start-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-playback-start-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-playback-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-record.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-seek-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-seek-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-seek-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-seek-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-skip-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-skip-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-skip-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/media-skip-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/menu-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/menubar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/messagedialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/migrating.html +106 -0
- data/vendor/local/share/gtk-doc/html/gtk3/multiline-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/network-idle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/notebook.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/numerableicon.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/numerableicon2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/options.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/pagesetupdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/panes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/printdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/printer-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/printer-info.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/printer-paused.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/printer-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/process-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/progressbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/pt06.html +44 -0
- data/vendor/local/share/gtk-doc/html/gtk3/radio-group.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/recentchooserdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/right-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/right-end.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/right-start.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/scales.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/scrolledwindow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/search-entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/separator.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/slices.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/sliders.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/spinbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/spinner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/statusbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gtk3/switch.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/system-run.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/text-x-generic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/theming.html +75 -0
- data/vendor/local/share/gtk-doc/html/gtk3/toggle-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/toolbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/toolpalette.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/tools-check-spelling.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/tree-view-coordinates.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/up-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/up-end.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/up-start.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/view-fullscreen.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/view-refresh.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/view-restore.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/view-sort-ascending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/view-sort-descending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/volumebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/widget-hvalign.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/window-close.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/window-default.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/window.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/zoom-fit-best.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/zoom-in.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/zoom-original.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk3/zoom-out.png +0 -0
- data/vendor/local/share/license/gtk+/AUTHORS +65 -0
- data/vendor/local/share/license/gtk+/COPYING +481 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/crh/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/crh/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/en/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/en/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ky/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ky/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk30.mo +0 -0
- data/vendor/local/share/man/man1/gtk-launch.1 +53 -0
- data/vendor/local/share/man/man1/gtk-query-immodules-3.0.1 +75 -0
- data/vendor/local/share/man/man1/gtk-update-icon-cache.1 +88 -0
- data/vendor/local/share/themes/Default/gtk-3.0/gtk-keys.css +3 -0
- data/vendor/local/share/themes/Emacs/gtk-3.0/gtk-keys.css +121 -0
- metadata +1449 -0
@@ -0,0 +1,410 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>GtkTextTagTable</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 3 Reference Manual">
|
8
|
+
<link rel="up" href="TextWidgetObjects.html" title="Multiline Text Editor">
|
9
|
+
<link rel="prev" href="GtkTextTag.html" title="GtkTextTag">
|
10
|
+
<link rel="next" href="GtkTextView.html" title="GtkTextView">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
16
|
+
<tr valign="middle">
|
17
|
+
<td><a accesskey="p" href="GtkTextTag.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="TextWidgetObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
+
<th width="100%" align="center">GTK+ 3 Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="GtkTextView.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
|
+
</tr>
|
23
|
+
<tr><td colspan="5" class="shortcuts">
|
24
|
+
<a href="#GtkTextTagTable.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#GtkTextTagTable.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#GtkTextTagTable.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
|
|
30
|
+
<a href="#GtkTextTagTable.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
|
31
|
+
|
|
32
|
+
<a href="#GtkTextTagTable.signals" class="shortcut">Signals</a>
|
33
|
+
</td></tr>
|
34
|
+
</table>
|
35
|
+
<div class="refentry">
|
36
|
+
<a name="GtkTextTagTable"></a><div class="titlepage"></div>
|
37
|
+
<div class="refnamediv"><table width="100%"><tr>
|
38
|
+
<td valign="top">
|
39
|
+
<h2><span class="refentrytitle"><a name="GtkTextTagTable.top_of_page"></a>GtkTextTagTable</span></h2>
|
40
|
+
<p>GtkTextTagTable — Collection of tags that can be used together</p>
|
41
|
+
</td>
|
42
|
+
<td valign="top" align="right"></td>
|
43
|
+
</tr></table></div>
|
44
|
+
<div class="refsynopsisdiv">
|
45
|
+
<a name="GtkTextTagTable.synopsis"></a><h2>Synopsis</h2>
|
46
|
+
<pre class="synopsis">
|
47
|
+
#include <gtk/gtk.h>
|
48
|
+
|
49
|
+
<a class="link" href="GtkTextTagTable.html#GtkTextTagTable-struct" title="GtkTextTagTable">GtkTextTagTable</a>;
|
50
|
+
<span class="returnvalue">void</span> (<a class="link" href="GtkTextTagTable.html#GtkTextTagTableForeach" title="GtkTextTagTableForeach ()">*GtkTextTagTableForeach</a>) (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
51
|
+
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>);
|
52
|
+
<a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="returnvalue">GtkTextTagTable</span></a> * <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-new" title="gtk_text_tag_table_new ()">gtk_text_tag_table_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
53
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-add" title="gtk_text_tag_table_add ()">gtk_text_tag_table_add</a> (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
|
54
|
+
<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);
|
55
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-remove" title="gtk_text_tag_table_remove ()">gtk_text_tag_table_remove</a> (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
|
56
|
+
<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);
|
57
|
+
<a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="returnvalue">GtkTextTag</span></a> * <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-lookup" title="gtk_text_tag_table_lookup ()">gtk_text_tag_table_lookup</a> (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
|
58
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);
|
59
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-foreach" title="gtk_text_tag_table_foreach ()">gtk_text_tag_table_foreach</a> (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
|
60
|
+
<em class="parameter"><code><a class="link" href="GtkTextTagTable.html#GtkTextTagTableForeach" title="GtkTextTagTableForeach ()"><span class="type">GtkTextTagTableForeach</span></a> func</code></em>,
|
61
|
+
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>);
|
62
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-get-size" title="gtk_text_tag_table_get_size ()">gtk_text_tag_table_get_size</a> (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>);
|
63
|
+
</pre>
|
64
|
+
</div>
|
65
|
+
<div class="refsect1">
|
66
|
+
<a name="GtkTextTagTable.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
67
|
+
<pre class="synopsis">
|
68
|
+
GObject
|
69
|
+
+----GtkTextTagTable
|
70
|
+
</pre>
|
71
|
+
</div>
|
72
|
+
<div class="refsect1">
|
73
|
+
<a name="GtkTextTagTable.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
74
|
+
<p>
|
75
|
+
GtkTextTagTable implements
|
76
|
+
<a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
|
77
|
+
</div>
|
78
|
+
<div class="refsect1">
|
79
|
+
<a name="GtkTextTagTable.signals"></a><h2>Signals</h2>
|
80
|
+
<pre class="synopsis">
|
81
|
+
"<a class="link" href="GtkTextTagTable.html#GtkTextTagTable-tag-added" title='The "tag-added" signal'>tag-added</a>" : <code class="literal">Run Last</code>
|
82
|
+
"<a class="link" href="GtkTextTagTable.html#GtkTextTagTable-tag-changed" title='The "tag-changed" signal'>tag-changed</a>" : <code class="literal">Run Last</code>
|
83
|
+
"<a class="link" href="GtkTextTagTable.html#GtkTextTagTable-tag-removed" title='The "tag-removed" signal'>tag-removed</a>" : <code class="literal">Run Last</code>
|
84
|
+
</pre>
|
85
|
+
</div>
|
86
|
+
<div class="refsect1">
|
87
|
+
<a name="GtkTextTagTable.description"></a><h2>Description</h2>
|
88
|
+
<p>
|
89
|
+
You may wish to begin by reading the <a class="link" href="TextWidget.html" title="Text Widget Overview">text widget
|
90
|
+
conceptual overview</a> which gives an overview of all the objects and
|
91
|
+
data types related to the text widget and how they work together.
|
92
|
+
</p>
|
93
|
+
<p>
|
94
|
+
</p>
|
95
|
+
<div class="refsect2">
|
96
|
+
<a name="GtkTextTagTable-BUILDER-UI"></a><h3>GtkTextTagTables as GtkBuildable</h3>
|
97
|
+
<p>
|
98
|
+
The GtkTextTagTable implementation of the GtkBuildable interface
|
99
|
+
supports adding tags by specifying "tag" as the "type"
|
100
|
+
attribute of a <child> element.
|
101
|
+
</p>
|
102
|
+
<p>
|
103
|
+
</p>
|
104
|
+
<div class="example">
|
105
|
+
<a name="idm140520382110432"></a><p class="title"><b>Example 59. A UI definition fragment specifying tags</b></p>
|
106
|
+
<div class="example-contents">
|
107
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
108
|
+
<tbody>
|
109
|
+
<tr>
|
110
|
+
<td class="listing_lines" align="right"><pre>1
|
111
|
+
2
|
112
|
+
3
|
113
|
+
4
|
114
|
+
5</pre></td>
|
115
|
+
<td class="listing_code"><pre class="programlisting"><span class="symbol"><</span><span class="usertype">object</span><span class="normal"> class</span><span class="symbol">=</span><span class="string">"GtkTextTagTable"</span><span class="symbol">></span>
|
116
|
+
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">child</span><span class="normal"> type</span><span class="symbol">=</span><span class="string">"tag"</span><span class="symbol">></span>
|
117
|
+
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">object</span><span class="normal"> class</span><span class="symbol">=</span><span class="string">"GtkTextTag"</span><span class="symbol">/></span>
|
118
|
+
<span class="normal"> </span><span class="symbol"></</span><span class="normal">child</span><span class="symbol">></span>
|
119
|
+
<span class="symbol"></</span><span class="normal">object</span><span class="symbol">></span></pre></td>
|
120
|
+
</tr>
|
121
|
+
</tbody>
|
122
|
+
</table>
|
123
|
+
</div>
|
124
|
+
|
125
|
+
</div>
|
126
|
+
<p><br class="example-break">
|
127
|
+
</p>
|
128
|
+
</div>
|
129
|
+
<p>
|
130
|
+
</p>
|
131
|
+
</div>
|
132
|
+
<div class="refsect1">
|
133
|
+
<a name="GtkTextTagTable.details"></a><h2>Details</h2>
|
134
|
+
<div class="refsect2">
|
135
|
+
<a name="GtkTextTagTable-struct"></a><h3>GtkTextTagTable</h3>
|
136
|
+
<pre class="programlisting">typedef struct _GtkTextTagTable GtkTextTagTable;</pre>
|
137
|
+
</div>
|
138
|
+
<hr>
|
139
|
+
<div class="refsect2">
|
140
|
+
<a name="GtkTextTagTableForeach"></a><h3>GtkTextTagTableForeach ()</h3>
|
141
|
+
<pre class="programlisting"><span class="returnvalue">void</span> (*GtkTextTagTableForeach) (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
142
|
+
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
|
143
|
+
</div>
|
144
|
+
<hr>
|
145
|
+
<div class="refsect2">
|
146
|
+
<a name="gtk-text-tag-table-new"></a><h3>gtk_text_tag_table_new ()</h3>
|
147
|
+
<pre class="programlisting"><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="returnvalue">GtkTextTagTable</span></a> * gtk_text_tag_table_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
148
|
+
<p>
|
149
|
+
Creates a new <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>. The table contains no tags by
|
150
|
+
default.
|
151
|
+
</p>
|
152
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
153
|
+
<colgroup>
|
154
|
+
<col align="left" valign="top">
|
155
|
+
<col>
|
156
|
+
</colgroup>
|
157
|
+
<tbody><tr>
|
158
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
159
|
+
<td>a new <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>
|
160
|
+
</td>
|
161
|
+
</tr></tbody>
|
162
|
+
</table></div>
|
163
|
+
</div>
|
164
|
+
<hr>
|
165
|
+
<div class="refsect2">
|
166
|
+
<a name="gtk-text-tag-table-add"></a><h3>gtk_text_tag_table_add ()</h3>
|
167
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_tag_table_add (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
|
168
|
+
<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);</pre>
|
169
|
+
<p>
|
170
|
+
Add a tag to the table. The tag is assigned the highest priority
|
171
|
+
in the table.
|
172
|
+
</p>
|
173
|
+
<p>
|
174
|
+
<em class="parameter"><code>tag</code></em> must not be in a tag table already, and may not have
|
175
|
+
the same name as an already-added tag.
|
176
|
+
</p>
|
177
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
178
|
+
<colgroup>
|
179
|
+
<col align="left" valign="top">
|
180
|
+
<col>
|
181
|
+
</colgroup>
|
182
|
+
<tbody>
|
183
|
+
<tr>
|
184
|
+
<td><p><span class="term"><em class="parameter"><code>table</code></em> :</span></p></td>
|
185
|
+
<td>a <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>
|
186
|
+
</td>
|
187
|
+
</tr>
|
188
|
+
<tr>
|
189
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
190
|
+
<td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
|
191
|
+
</td>
|
192
|
+
</tr>
|
193
|
+
</tbody>
|
194
|
+
</table></div>
|
195
|
+
</div>
|
196
|
+
<hr>
|
197
|
+
<div class="refsect2">
|
198
|
+
<a name="gtk-text-tag-table-remove"></a><h3>gtk_text_tag_table_remove ()</h3>
|
199
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_tag_table_remove (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
|
200
|
+
<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);</pre>
|
201
|
+
<p>
|
202
|
+
Remove a tag from the table. This will remove the table's
|
203
|
+
reference to the tag, so be careful - the tag will end
|
204
|
+
up destroyed if you don't have a reference to it.
|
205
|
+
</p>
|
206
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
207
|
+
<colgroup>
|
208
|
+
<col align="left" valign="top">
|
209
|
+
<col>
|
210
|
+
</colgroup>
|
211
|
+
<tbody>
|
212
|
+
<tr>
|
213
|
+
<td><p><span class="term"><em class="parameter"><code>table</code></em> :</span></p></td>
|
214
|
+
<td>a <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>
|
215
|
+
</td>
|
216
|
+
</tr>
|
217
|
+
<tr>
|
218
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
219
|
+
<td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
|
220
|
+
</td>
|
221
|
+
</tr>
|
222
|
+
</tbody>
|
223
|
+
</table></div>
|
224
|
+
</div>
|
225
|
+
<hr>
|
226
|
+
<div class="refsect2">
|
227
|
+
<a name="gtk-text-tag-table-lookup"></a><h3>gtk_text_tag_table_lookup ()</h3>
|
228
|
+
<pre class="programlisting"><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="returnvalue">GtkTextTag</span></a> * gtk_text_tag_table_lookup (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
|
229
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
|
230
|
+
<p>
|
231
|
+
Look up a named tag.
|
232
|
+
</p>
|
233
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
234
|
+
<colgroup>
|
235
|
+
<col align="left" valign="top">
|
236
|
+
<col>
|
237
|
+
</colgroup>
|
238
|
+
<tbody>
|
239
|
+
<tr>
|
240
|
+
<td><p><span class="term"><em class="parameter"><code>table</code></em> :</span></p></td>
|
241
|
+
<td>a <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>
|
242
|
+
</td>
|
243
|
+
</tr>
|
244
|
+
<tr>
|
245
|
+
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
246
|
+
<td>name of a tag</td>
|
247
|
+
</tr>
|
248
|
+
<tr>
|
249
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
250
|
+
<td>The tag, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if none by that name is in the table. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
251
|
+
</td>
|
252
|
+
</tr>
|
253
|
+
</tbody>
|
254
|
+
</table></div>
|
255
|
+
</div>
|
256
|
+
<hr>
|
257
|
+
<div class="refsect2">
|
258
|
+
<a name="gtk-text-tag-table-foreach"></a><h3>gtk_text_tag_table_foreach ()</h3>
|
259
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_tag_table_foreach (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>,
|
260
|
+
<em class="parameter"><code><a class="link" href="GtkTextTagTable.html#GtkTextTagTableForeach" title="GtkTextTagTableForeach ()"><span class="type">GtkTextTagTableForeach</span></a> func</code></em>,
|
261
|
+
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
|
262
|
+
<p>
|
263
|
+
Calls <em class="parameter"><code>func</code></em> on each tag in <em class="parameter"><code>table</code></em>, with user data <em class="parameter"><code>data</code></em>.
|
264
|
+
Note that the table may not be modified while iterating
|
265
|
+
over it (you can't add/remove tags).
|
266
|
+
</p>
|
267
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
268
|
+
<colgroup>
|
269
|
+
<col align="left" valign="top">
|
270
|
+
<col>
|
271
|
+
</colgroup>
|
272
|
+
<tbody>
|
273
|
+
<tr>
|
274
|
+
<td><p><span class="term"><em class="parameter"><code>table</code></em> :</span></p></td>
|
275
|
+
<td>a <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>
|
276
|
+
</td>
|
277
|
+
</tr>
|
278
|
+
<tr>
|
279
|
+
<td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
|
280
|
+
<td>a function to call on each tag. <span class="annotation">[<acronym title="The callback is valid only during the call to the method."><span class="acronym">scope call</span></acronym>]</span>
|
281
|
+
</td>
|
282
|
+
</tr>
|
283
|
+
<tr>
|
284
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
285
|
+
<td>user data</td>
|
286
|
+
</tr>
|
287
|
+
</tbody>
|
288
|
+
</table></div>
|
289
|
+
</div>
|
290
|
+
<hr>
|
291
|
+
<div class="refsect2">
|
292
|
+
<a name="gtk-text-tag-table-get-size"></a><h3>gtk_text_tag_table_get_size ()</h3>
|
293
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_tag_table_get_size (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>);</pre>
|
294
|
+
<p>
|
295
|
+
Returns the size of the table (number of tags)
|
296
|
+
</p>
|
297
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
298
|
+
<colgroup>
|
299
|
+
<col align="left" valign="top">
|
300
|
+
<col>
|
301
|
+
</colgroup>
|
302
|
+
<tbody>
|
303
|
+
<tr>
|
304
|
+
<td><p><span class="term"><em class="parameter"><code>table</code></em> :</span></p></td>
|
305
|
+
<td>a <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>
|
306
|
+
</td>
|
307
|
+
</tr>
|
308
|
+
<tr>
|
309
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
310
|
+
<td>number of tags in <em class="parameter"><code>table</code></em>
|
311
|
+
</td>
|
312
|
+
</tr>
|
313
|
+
</tbody>
|
314
|
+
</table></div>
|
315
|
+
</div>
|
316
|
+
</div>
|
317
|
+
<div class="refsect1">
|
318
|
+
<a name="GtkTextTagTable.signal-details"></a><h2>Signal Details</h2>
|
319
|
+
<div class="refsect2">
|
320
|
+
<a name="GtkTextTagTable-tag-added"></a><h3>The <code class="literal">"tag-added"</code> signal</h3>
|
321
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *texttagtable,
|
322
|
+
<a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag,
|
323
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
324
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
325
|
+
<colgroup>
|
326
|
+
<col align="left" valign="top">
|
327
|
+
<col>
|
328
|
+
</colgroup>
|
329
|
+
<tbody>
|
330
|
+
<tr>
|
331
|
+
<td><p><span class="term"><em class="parameter"><code>texttagtable</code></em> :</span></p></td>
|
332
|
+
<td>the object which received the signal.</td>
|
333
|
+
</tr>
|
334
|
+
<tr>
|
335
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
336
|
+
<td>the added tag.</td>
|
337
|
+
</tr>
|
338
|
+
<tr>
|
339
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
340
|
+
<td>user data set when the signal handler was connected.</td>
|
341
|
+
</tr>
|
342
|
+
</tbody>
|
343
|
+
</table></div>
|
344
|
+
</div>
|
345
|
+
<hr>
|
346
|
+
<div class="refsect2">
|
347
|
+
<a name="GtkTextTagTable-tag-changed"></a><h3>The <code class="literal">"tag-changed"</code> signal</h3>
|
348
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *texttagtable,
|
349
|
+
<a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag,
|
350
|
+
<span class="type">gboolean</span> size_changed,
|
351
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
352
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
353
|
+
<colgroup>
|
354
|
+
<col align="left" valign="top">
|
355
|
+
<col>
|
356
|
+
</colgroup>
|
357
|
+
<tbody>
|
358
|
+
<tr>
|
359
|
+
<td><p><span class="term"><em class="parameter"><code>texttagtable</code></em> :</span></p></td>
|
360
|
+
<td>the object which received the signal.</td>
|
361
|
+
</tr>
|
362
|
+
<tr>
|
363
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
364
|
+
<td>the changed tag.</td>
|
365
|
+
</tr>
|
366
|
+
<tr>
|
367
|
+
<td><p><span class="term"><em class="parameter"><code>size_changed</code></em> :</span></p></td>
|
368
|
+
<td>whether the size has been changed.</td>
|
369
|
+
</tr>
|
370
|
+
<tr>
|
371
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
372
|
+
<td>user data set when the signal handler was connected.</td>
|
373
|
+
</tr>
|
374
|
+
</tbody>
|
375
|
+
</table></div>
|
376
|
+
</div>
|
377
|
+
<hr>
|
378
|
+
<div class="refsect2">
|
379
|
+
<a name="GtkTextTagTable-tag-removed"></a><h3>The <code class="literal">"tag-removed"</code> signal</h3>
|
380
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *texttagtable,
|
381
|
+
<a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag,
|
382
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
383
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
384
|
+
<colgroup>
|
385
|
+
<col align="left" valign="top">
|
386
|
+
<col>
|
387
|
+
</colgroup>
|
388
|
+
<tbody>
|
389
|
+
<tr>
|
390
|
+
<td><p><span class="term"><em class="parameter"><code>texttagtable</code></em> :</span></p></td>
|
391
|
+
<td>the object which received the signal.</td>
|
392
|
+
</tr>
|
393
|
+
<tr>
|
394
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
395
|
+
<td>the removed tag.</td>
|
396
|
+
</tr>
|
397
|
+
<tr>
|
398
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
399
|
+
<td>user data set when the signal handler was connected.</td>
|
400
|
+
</tr>
|
401
|
+
</tbody>
|
402
|
+
</table></div>
|
403
|
+
</div>
|
404
|
+
</div>
|
405
|
+
</div>
|
406
|
+
<div class="footer">
|
407
|
+
<hr>
|
408
|
+
Generated by GTK-Doc V1.18.1</div>
|
409
|
+
</body>
|
410
|
+
</html>
|
@@ -0,0 +1,3390 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>GtkTextView</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 3 Reference Manual">
|
8
|
+
<link rel="up" href="TextWidgetObjects.html" title="Multiline Text Editor">
|
9
|
+
<link rel="prev" href="GtkTextTagTable.html" title="GtkTextTagTable">
|
10
|
+
<link rel="next" href="TreeWidgetObjects.html" title="Tree, List and Icon Grid Widgets">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.18.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
16
|
+
<tr valign="middle">
|
17
|
+
<td><a accesskey="p" href="GtkTextTagTable.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="TextWidgetObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
+
<th width="100%" align="center">GTK+ 3 Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="TreeWidgetObjects.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
|
+
</tr>
|
23
|
+
<tr><td colspan="5" class="shortcuts">
|
24
|
+
<a href="#GtkTextView.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#GtkTextView.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#GtkTextView.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
|
|
30
|
+
<a href="#GtkTextView.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
|
31
|
+
|
|
32
|
+
<a href="#GtkTextView.properties" class="shortcut">Properties</a>
|
33
|
+
|
|
34
|
+
<a href="#GtkTextView.style-properties" class="shortcut">Style Properties</a>
|
35
|
+
|
|
36
|
+
<a href="#GtkTextView.signals" class="shortcut">Signals</a>
|
37
|
+
</td></tr>
|
38
|
+
</table>
|
39
|
+
<div class="refentry">
|
40
|
+
<a name="GtkTextView"></a><div class="titlepage"></div>
|
41
|
+
<div class="refnamediv"><table width="100%"><tr>
|
42
|
+
<td valign="top">
|
43
|
+
<h2><span class="refentrytitle"><a name="GtkTextView.top_of_page"></a>GtkTextView</span></h2>
|
44
|
+
<p>GtkTextView — Widget that displays a GtkTextBuffer</p>
|
45
|
+
</td>
|
46
|
+
<td valign="top" align="right"><img src="multiline-text.png"></td>
|
47
|
+
</tr></table></div>
|
48
|
+
<div class="refsynopsisdiv">
|
49
|
+
<a name="GtkTextView.synopsis"></a><h2>Synopsis</h2>
|
50
|
+
<a name="GtkTextChildAnchor"></a><pre class="synopsis">
|
51
|
+
#include <gtk/gtk.h>
|
52
|
+
|
53
|
+
struct <a class="link" href="GtkTextView.html#GtkTextView-struct" title="struct GtkTextView">GtkTextView</a>;
|
54
|
+
enum <a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType">GtkTextWindowType</a>;
|
55
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkTextView.html#gtk-text-view-new" title="gtk_text_view_new ()">gtk_text_view_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
56
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkTextView.html#gtk-text-view-new-with-buffer" title="gtk_text_view_new_with_buffer ()">gtk_text_view_new_with_buffer</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
|
57
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-buffer" title="gtk_text_view_set_buffer ()">gtk_text_view_set_buffer</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
58
|
+
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
|
59
|
+
<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * <a class="link" href="GtkTextView.html#gtk-text-view-get-buffer" title="gtk_text_view_get_buffer ()">gtk_text_view_get_buffer</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
60
|
+
<a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * <a class="link" href="GtkTextView.html#gtk-text-view-get-hadjustment" title="gtk_text_view_get_hadjustment ()">gtk_text_view_get_hadjustment</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
61
|
+
<a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * <a class="link" href="GtkTextView.html#gtk-text-view-get-vadjustment" title="gtk_text_view_get_vadjustment ()">gtk_text_view_get_vadjustment</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
62
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-scroll-to-mark" title="gtk_text_view_scroll_to_mark ()">gtk_text_view_scroll_to_mark</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
63
|
+
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
|
64
|
+
<em class="parameter"><code><span class="type">gdouble</span> within_margin</code></em>,
|
65
|
+
<em class="parameter"><code><span class="type">gboolean</span> use_align</code></em>,
|
66
|
+
<em class="parameter"><code><span class="type">gdouble</span> xalign</code></em>,
|
67
|
+
<em class="parameter"><code><span class="type">gdouble</span> yalign</code></em>);
|
68
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-scroll-to-iter" title="gtk_text_view_scroll_to_iter ()">gtk_text_view_scroll_to_iter</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
69
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
70
|
+
<em class="parameter"><code><span class="type">gdouble</span> within_margin</code></em>,
|
71
|
+
<em class="parameter"><code><span class="type">gboolean</span> use_align</code></em>,
|
72
|
+
<em class="parameter"><code><span class="type">gdouble</span> xalign</code></em>,
|
73
|
+
<em class="parameter"><code><span class="type">gdouble</span> yalign</code></em>);
|
74
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-scroll-mark-onscreen" title="gtk_text_view_scroll_mark_onscreen ()">gtk_text_view_scroll_mark_onscreen</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
75
|
+
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
76
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-move-mark-onscreen" title="gtk_text_view_move_mark_onscreen ()">gtk_text_view_move_mark_onscreen</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
77
|
+
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
78
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-place-cursor-onscreen" title="gtk_text_view_place_cursor_onscreen ()">gtk_text_view_place_cursor_onscreen</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
79
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-visible-rect" title="gtk_text_view_get_visible_rect ()">gtk_text_view_get_visible_rect</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
80
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *visible_rect</code></em>);
|
81
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-iter-location" title="gtk_text_view_get_iter_location ()">gtk_text_view_get_iter_location</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
82
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
83
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *location</code></em>);
|
84
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-cursor-locations" title="gtk_text_view_get_cursor_locations ()">gtk_text_view_get_cursor_locations</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
85
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
86
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *strong</code></em>,
|
87
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *weak</code></em>);
|
88
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-line-at-y" title="gtk_text_view_get_line_at_y ()">gtk_text_view_get_line_at_y</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
89
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *target_iter</code></em>,
|
90
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>,
|
91
|
+
<em class="parameter"><code><span class="type">gint</span> *line_top</code></em>);
|
92
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-line-yrange" title="gtk_text_view_get_line_yrange ()">gtk_text_view_get_line_yrange</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
93
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
94
|
+
<em class="parameter"><code><span class="type">gint</span> *y</code></em>,
|
95
|
+
<em class="parameter"><code><span class="type">gint</span> *height</code></em>);
|
96
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-iter-at-location" title="gtk_text_view_get_iter_at_location ()">gtk_text_view_get_iter_at_location</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
97
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
98
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
99
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);
|
100
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-iter-at-position" title="gtk_text_view_get_iter_at_position ()">gtk_text_view_get_iter_at_position</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
101
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
102
|
+
<em class="parameter"><code><span class="type">gint</span> *trailing</code></em>,
|
103
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
104
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);
|
105
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-buffer-to-window-coords" title="gtk_text_view_buffer_to_window_coords ()">gtk_text_view_buffer_to_window_coords</a>
|
106
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
107
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>,
|
108
|
+
<em class="parameter"><code><span class="type">gint</span> buffer_x</code></em>,
|
109
|
+
<em class="parameter"><code><span class="type">gint</span> buffer_y</code></em>,
|
110
|
+
<em class="parameter"><code><span class="type">gint</span> *window_x</code></em>,
|
111
|
+
<em class="parameter"><code><span class="type">gint</span> *window_y</code></em>);
|
112
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-window-to-buffer-coords" title="gtk_text_view_window_to_buffer_coords ()">gtk_text_view_window_to_buffer_coords</a>
|
113
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
114
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>,
|
115
|
+
<em class="parameter"><code><span class="type">gint</span> window_x</code></em>,
|
116
|
+
<em class="parameter"><code><span class="type">gint</span> window_y</code></em>,
|
117
|
+
<em class="parameter"><code><span class="type">gint</span> *buffer_x</code></em>,
|
118
|
+
<em class="parameter"><code><span class="type">gint</span> *buffer_y</code></em>);
|
119
|
+
<a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * <a class="link" href="GtkTextView.html#gtk-text-view-get-window" title="gtk_text_view_get_window ()">gtk_text_view_get_window</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
120
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>);
|
121
|
+
<a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="returnvalue">GtkTextWindowType</span></a> <a class="link" href="GtkTextView.html#gtk-text-view-get-window-type" title="gtk_text_view_get_window_type ()">gtk_text_view_get_window_type</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
122
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);
|
123
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-border-window-size" title="gtk_text_view_set_border_window_size ()">gtk_text_view_set_border_window_size</a>
|
124
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
125
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> type</code></em>,
|
126
|
+
<em class="parameter"><code><span class="type">gint</span> size</code></em>);
|
127
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-border-window-size" title="gtk_text_view_get_border_window_size ()">gtk_text_view_get_border_window_size</a>
|
128
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
129
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> type</code></em>);
|
130
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-forward-display-line" title="gtk_text_view_forward_display_line ()">gtk_text_view_forward_display_line</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
131
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
|
132
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-backward-display-line" title="gtk_text_view_backward_display_line ()">gtk_text_view_backward_display_line</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
133
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
|
134
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-forward-display-line-end" title="gtk_text_view_forward_display_line_end ()">gtk_text_view_forward_display_line_end</a>
|
135
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
136
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
|
137
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-backward-display-line-start" title="gtk_text_view_backward_display_line_start ()">gtk_text_view_backward_display_line_start</a>
|
138
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
139
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
|
140
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-starts-display-line" title="gtk_text_view_starts_display_line ()">gtk_text_view_starts_display_line</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
141
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
|
142
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-move-visually" title="gtk_text_view_move_visually ()">gtk_text_view_move_visually</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
143
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
144
|
+
<em class="parameter"><code><span class="type">gint</span> count</code></em>);
|
145
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-add-child-at-anchor" title="gtk_text_view_add_child_at_anchor ()">gtk_text_view_add_child_at_anchor</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
146
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
147
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);
|
148
|
+
struct <a class="link" href="GtkTextView.html#GtkTextChildAnchor-struct" title="struct GtkTextChildAnchor">GtkTextChildAnchor</a>;
|
149
|
+
<a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="returnvalue">GtkTextChildAnchor</span></a> * <a class="link" href="GtkTextView.html#gtk-text-child-anchor-new" title="gtk_text_child_anchor_new ()">gtk_text_child_anchor_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
150
|
+
<span class="returnvalue">GList</span> * <a class="link" href="GtkTextView.html#gtk-text-child-anchor-get-widgets" title="gtk_text_child_anchor_get_widgets ()">gtk_text_child_anchor_get_widgets</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);
|
151
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-child-anchor-get-deleted" title="gtk_text_child_anchor_get_deleted ()">gtk_text_child_anchor_get_deleted</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);
|
152
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-add-child-in-window" title="gtk_text_view_add_child_in_window ()">gtk_text_view_add_child_in_window</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
153
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
154
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> which_window</code></em>,
|
155
|
+
<em class="parameter"><code><span class="type">gint</span> xpos</code></em>,
|
156
|
+
<em class="parameter"><code><span class="type">gint</span> ypos</code></em>);
|
157
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-move-child" title="gtk_text_view_move_child ()">gtk_text_view_move_child</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
158
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
159
|
+
<em class="parameter"><code><span class="type">gint</span> xpos</code></em>,
|
160
|
+
<em class="parameter"><code><span class="type">gint</span> ypos</code></em>);
|
161
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-wrap-mode" title="gtk_text_view_set_wrap_mode ()">gtk_text_view_set_wrap_mode</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
162
|
+
<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a> wrap_mode</code></em>);
|
163
|
+
<a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="returnvalue">GtkWrapMode</span></a> <a class="link" href="GtkTextView.html#gtk-text-view-get-wrap-mode" title="gtk_text_view_get_wrap_mode ()">gtk_text_view_get_wrap_mode</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
164
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-editable" title="gtk_text_view_set_editable ()">gtk_text_view_set_editable</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
165
|
+
<em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);
|
166
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-editable" title="gtk_text_view_get_editable ()">gtk_text_view_get_editable</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
167
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-cursor-visible" title="gtk_text_view_set_cursor_visible ()">gtk_text_view_set_cursor_visible</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
168
|
+
<em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);
|
169
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-cursor-visible" title="gtk_text_view_get_cursor_visible ()">gtk_text_view_get_cursor_visible</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
170
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-overwrite" title="gtk_text_view_set_overwrite ()">gtk_text_view_set_overwrite</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
171
|
+
<em class="parameter"><code><span class="type">gboolean</span> overwrite</code></em>);
|
172
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-overwrite" title="gtk_text_view_get_overwrite ()">gtk_text_view_get_overwrite</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
173
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-pixels-above-lines" title="gtk_text_view_set_pixels_above_lines ()">gtk_text_view_set_pixels_above_lines</a>
|
174
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
175
|
+
<em class="parameter"><code><span class="type">gint</span> pixels_above_lines</code></em>);
|
176
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-pixels-above-lines" title="gtk_text_view_get_pixels_above_lines ()">gtk_text_view_get_pixels_above_lines</a>
|
177
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
178
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-pixels-below-lines" title="gtk_text_view_set_pixels_below_lines ()">gtk_text_view_set_pixels_below_lines</a>
|
179
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
180
|
+
<em class="parameter"><code><span class="type">gint</span> pixels_below_lines</code></em>);
|
181
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-pixels-below-lines" title="gtk_text_view_get_pixels_below_lines ()">gtk_text_view_get_pixels_below_lines</a>
|
182
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
183
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-pixels-inside-wrap" title="gtk_text_view_set_pixels_inside_wrap ()">gtk_text_view_set_pixels_inside_wrap</a>
|
184
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
185
|
+
<em class="parameter"><code><span class="type">gint</span> pixels_inside_wrap</code></em>);
|
186
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-pixels-inside-wrap" title="gtk_text_view_get_pixels_inside_wrap ()">gtk_text_view_get_pixels_inside_wrap</a>
|
187
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
188
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-justification" title="gtk_text_view_set_justification ()">gtk_text_view_set_justification</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
189
|
+
<em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> justification</code></em>);
|
190
|
+
<a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="returnvalue">GtkJustification</span></a> <a class="link" href="GtkTextView.html#gtk-text-view-get-justification" title="gtk_text_view_get_justification ()">gtk_text_view_get_justification</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
191
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-left-margin" title="gtk_text_view_set_left_margin ()">gtk_text_view_set_left_margin</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
192
|
+
<em class="parameter"><code><span class="type">gint</span> left_margin</code></em>);
|
193
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-left-margin" title="gtk_text_view_get_left_margin ()">gtk_text_view_get_left_margin</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
194
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-right-margin" title="gtk_text_view_set_right_margin ()">gtk_text_view_set_right_margin</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
195
|
+
<em class="parameter"><code><span class="type">gint</span> right_margin</code></em>);
|
196
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-right-margin" title="gtk_text_view_get_right_margin ()">gtk_text_view_get_right_margin</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
197
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-indent" title="gtk_text_view_set_indent ()">gtk_text_view_set_indent</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
198
|
+
<em class="parameter"><code><span class="type">gint</span> indent</code></em>);
|
199
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-indent" title="gtk_text_view_get_indent ()">gtk_text_view_get_indent</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
200
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-tabs" title="gtk_text_view_set_tabs ()">gtk_text_view_set_tabs</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
201
|
+
<em class="parameter"><code><span class="type">PangoTabArray</span> *tabs</code></em>);
|
202
|
+
<span class="returnvalue">PangoTabArray</span> * <a class="link" href="GtkTextView.html#gtk-text-view-get-tabs" title="gtk_text_view_get_tabs ()">gtk_text_view_get_tabs</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
203
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-accepts-tab" title="gtk_text_view_set_accepts_tab ()">gtk_text_view_set_accepts_tab</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
204
|
+
<em class="parameter"><code><span class="type">gboolean</span> accepts_tab</code></em>);
|
205
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-get-accepts-tab" title="gtk_text_view_get_accepts_tab ()">gtk_text_view_get_accepts_tab</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
206
|
+
<a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * <a class="link" href="GtkTextView.html#gtk-text-view-get-default-attributes" title="gtk_text_view_get_default_attributes ()">gtk_text_view_get_default_attributes</a>
|
207
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
208
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextView.html#gtk-text-view-im-context-filter-keypress" title="gtk_text_view_im_context_filter_keypress ()">gtk_text_view_im_context_filter_keypress</a>
|
209
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
210
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>);
|
211
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-reset-im-context" title="gtk_text_view_reset_im_context ()">gtk_text_view_reset_im_context</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
212
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-input-purpose" title="gtk_text_view_set_input_purpose ()">gtk_text_view_set_input_purpose</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
213
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="type">GtkInputPurpose</span></a> purpose</code></em>);
|
214
|
+
<a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="returnvalue">GtkInputPurpose</span></a> <a class="link" href="GtkTextView.html#gtk-text-view-get-input-purpose" title="gtk_text_view_get_input_purpose ()">gtk_text_view_get_input_purpose</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
215
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextView.html#gtk-text-view-set-input-hints" title="gtk_text_view_set_input_hints ()">gtk_text_view_set_input_hints</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
216
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="type">GtkInputHints</span></a> hints</code></em>);
|
217
|
+
<a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="returnvalue">GtkInputHints</span></a> <a class="link" href="GtkTextView.html#gtk-text-view-get-input-hints" title="gtk_text_view_get_input_hints ()">gtk_text_view_get_input_hints</a> (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);
|
218
|
+
#define <a class="link" href="GtkTextView.html#GTK-TEXT-VIEW-PRIORITY-VALIDATE:CAPS" title="GTK_TEXT_VIEW_PRIORITY_VALIDATE">GTK_TEXT_VIEW_PRIORITY_VALIDATE</a>
|
219
|
+
</pre>
|
220
|
+
</div>
|
221
|
+
<div class="refsect1">
|
222
|
+
<a name="GtkTextView.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
223
|
+
<pre class="synopsis">
|
224
|
+
GObject
|
225
|
+
+----GInitiallyUnowned
|
226
|
+
+----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
|
227
|
+
+----<a class="link" href="GtkContainer.html" title="GtkContainer">GtkContainer</a>
|
228
|
+
+----GtkTextView
|
229
|
+
</pre>
|
230
|
+
<pre class="synopsis">
|
231
|
+
GObject
|
232
|
+
+----GtkTextChildAnchor
|
233
|
+
</pre>
|
234
|
+
</div>
|
235
|
+
<div class="refsect1">
|
236
|
+
<a name="GtkTextView.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
237
|
+
<p>
|
238
|
+
GtkTextView implements
|
239
|
+
AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a> and <a class="link" href="GtkScrollable.html" title="GtkScrollable">GtkScrollable</a>.</p>
|
240
|
+
</div>
|
241
|
+
<div class="refsect1">
|
242
|
+
<a name="GtkTextView.properties"></a><h2>Properties</h2>
|
243
|
+
<pre class="synopsis">
|
244
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--accepts-tab" title='The "accepts-tab" property'>accepts-tab</a>" <span class="type">gboolean</span> : Read / Write
|
245
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--buffer" title='The "buffer" property'>buffer</a>" <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>* : Read / Write
|
246
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--cursor-visible" title='The "cursor-visible" property'>cursor-visible</a>" <span class="type">gboolean</span> : Read / Write
|
247
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--editable" title='The "editable" property'>editable</a>" <span class="type">gboolean</span> : Read / Write
|
248
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--im-module" title='The "im-module" property'>im-module</a>" <span class="type">gchar</span>* : Read / Write
|
249
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--indent" title='The "indent" property'>indent</a>" <span class="type">gint</span> : Read / Write
|
250
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--input-hints" title='The "input-hints" property'>input-hints</a>" <a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="type">GtkInputHints</span></a> : Read / Write
|
251
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--input-purpose" title='The "input-purpose" property'>input-purpose</a>" <a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="type">GtkInputPurpose</span></a> : Read / Write
|
252
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--justification" title='The "justification" property'>justification</a>" <a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> : Read / Write
|
253
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--left-margin" title='The "left-margin" property'>left-margin</a>" <span class="type">gint</span> : Read / Write
|
254
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--overwrite" title='The "overwrite" property'>overwrite</a>" <span class="type">gboolean</span> : Read / Write
|
255
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--pixels-above-lines" title='The "pixels-above-lines" property'>pixels-above-lines</a>" <span class="type">gint</span> : Read / Write
|
256
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--pixels-below-lines" title='The "pixels-below-lines" property'>pixels-below-lines</a>" <span class="type">gint</span> : Read / Write
|
257
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--pixels-inside-wrap" title='The "pixels-inside-wrap" property'>pixels-inside-wrap</a>" <span class="type">gint</span> : Read / Write
|
258
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--right-margin" title='The "right-margin" property'>right-margin</a>" <span class="type">gint</span> : Read / Write
|
259
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--tabs" title='The "tabs" property'>tabs</a>" <span class="type">PangoTabArray</span>* : Read / Write
|
260
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--wrap-mode" title='The "wrap-mode" property'>wrap-mode</a>" <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a> : Read / Write
|
261
|
+
</pre>
|
262
|
+
</div>
|
263
|
+
<div class="refsect1">
|
264
|
+
<a name="GtkTextView.style-properties"></a><h2>Style Properties</h2>
|
265
|
+
<pre class="synopsis">
|
266
|
+
"<a class="link" href="GtkTextView.html#GtkTextView--s-error-underline-color" title='The "error-underline-color" style property'>error-underline-color</a>" <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read
|
267
|
+
</pre>
|
268
|
+
</div>
|
269
|
+
<div class="refsect1">
|
270
|
+
<a name="GtkTextView.signals"></a><h2>Signals</h2>
|
271
|
+
<pre class="synopsis">
|
272
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-backspace" title='The "backspace" signal'>backspace</a>" : <code class="literal">Action</code>
|
273
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-copy-clipboard" title='The "copy-clipboard" signal'>copy-clipboard</a>" : <code class="literal">Action</code>
|
274
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-cut-clipboard" title='The "cut-clipboard" signal'>cut-clipboard</a>" : <code class="literal">Action</code>
|
275
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-delete-from-cursor" title='The "delete-from-cursor" signal'>delete-from-cursor</a>" : <code class="literal">Action</code>
|
276
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-insert-at-cursor" title='The "insert-at-cursor" signal'>insert-at-cursor</a>" : <code class="literal">Action</code>
|
277
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" : <code class="literal">Action</code>
|
278
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-move-viewport" title='The "move-viewport" signal'>move-viewport</a>" : <code class="literal">Action</code>
|
279
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-paste-clipboard" title='The "paste-clipboard" signal'>paste-clipboard</a>" : <code class="literal">Action</code>
|
280
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-populate-popup" title='The "populate-popup" signal'>populate-popup</a>" : <code class="literal">Run Last</code>
|
281
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-preedit-changed" title='The "preedit-changed" signal'>preedit-changed</a>" : <code class="literal">Action</code>
|
282
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-select-all" title='The "select-all" signal'>select-all</a>" : <code class="literal">Action</code>
|
283
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-set-anchor" title='The "set-anchor" signal'>set-anchor</a>" : <code class="literal">Action</code>
|
284
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-toggle-cursor-visible" title='The "toggle-cursor-visible" signal'>toggle-cursor-visible</a>" : <code class="literal">Action</code>
|
285
|
+
"<a class="link" href="GtkTextView.html#GtkTextView-toggle-overwrite" title='The "toggle-overwrite" signal'>toggle-overwrite</a>" : <code class="literal">Action</code>
|
286
|
+
</pre>
|
287
|
+
</div>
|
288
|
+
<div class="refsect1">
|
289
|
+
<a name="GtkTextView.description"></a><h2>Description</h2>
|
290
|
+
<p>
|
291
|
+
You may wish to begin by reading the <a class="link" href="TextWidget.html" title="Text Widget Overview">text widget
|
292
|
+
conceptual overview</a> which gives an overview of all the objects and data
|
293
|
+
types related to the text widget and how they work together.
|
294
|
+
</p>
|
295
|
+
</div>
|
296
|
+
<div class="refsect1">
|
297
|
+
<a name="GtkTextView.details"></a><h2>Details</h2>
|
298
|
+
<div class="refsect2">
|
299
|
+
<a name="GtkTextView-struct"></a><h3>struct GtkTextView</h3>
|
300
|
+
<pre class="programlisting">struct GtkTextView;</pre>
|
301
|
+
</div>
|
302
|
+
<hr>
|
303
|
+
<div class="refsect2">
|
304
|
+
<a name="GtkTextWindowType"></a><h3>enum GtkTextWindowType</h3>
|
305
|
+
<pre class="programlisting">typedef enum {
|
306
|
+
GTK_TEXT_WINDOW_PRIVATE,
|
307
|
+
GTK_TEXT_WINDOW_WIDGET,
|
308
|
+
GTK_TEXT_WINDOW_TEXT,
|
309
|
+
GTK_TEXT_WINDOW_LEFT,
|
310
|
+
GTK_TEXT_WINDOW_RIGHT,
|
311
|
+
GTK_TEXT_WINDOW_TOP,
|
312
|
+
GTK_TEXT_WINDOW_BOTTOM
|
313
|
+
} GtkTextWindowType;
|
314
|
+
</pre>
|
315
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
316
|
+
<colgroup>
|
317
|
+
<col align="left" valign="top">
|
318
|
+
<col>
|
319
|
+
</colgroup>
|
320
|
+
<tbody>
|
321
|
+
<tr>
|
322
|
+
<td><p><a name="GTK-TEXT-WINDOW-PRIVATE:CAPS"></a><span class="term"><code class="literal">GTK_TEXT_WINDOW_PRIVATE</code></span></p></td>
|
323
|
+
<td></td>
|
324
|
+
</tr>
|
325
|
+
<tr>
|
326
|
+
<td><p><a name="GTK-TEXT-WINDOW-WIDGET:CAPS"></a><span class="term"><code class="literal">GTK_TEXT_WINDOW_WIDGET</code></span></p></td>
|
327
|
+
<td></td>
|
328
|
+
</tr>
|
329
|
+
<tr>
|
330
|
+
<td><p><a name="GTK-TEXT-WINDOW-TEXT:CAPS"></a><span class="term"><code class="literal">GTK_TEXT_WINDOW_TEXT</code></span></p></td>
|
331
|
+
<td></td>
|
332
|
+
</tr>
|
333
|
+
<tr>
|
334
|
+
<td><p><a name="GTK-TEXT-WINDOW-LEFT:CAPS"></a><span class="term"><code class="literal">GTK_TEXT_WINDOW_LEFT</code></span></p></td>
|
335
|
+
<td></td>
|
336
|
+
</tr>
|
337
|
+
<tr>
|
338
|
+
<td><p><a name="GTK-TEXT-WINDOW-RIGHT:CAPS"></a><span class="term"><code class="literal">GTK_TEXT_WINDOW_RIGHT</code></span></p></td>
|
339
|
+
<td></td>
|
340
|
+
</tr>
|
341
|
+
<tr>
|
342
|
+
<td><p><a name="GTK-TEXT-WINDOW-TOP:CAPS"></a><span class="term"><code class="literal">GTK_TEXT_WINDOW_TOP</code></span></p></td>
|
343
|
+
<td></td>
|
344
|
+
</tr>
|
345
|
+
<tr>
|
346
|
+
<td><p><a name="GTK-TEXT-WINDOW-BOTTOM:CAPS"></a><span class="term"><code class="literal">GTK_TEXT_WINDOW_BOTTOM</code></span></p></td>
|
347
|
+
<td></td>
|
348
|
+
</tr>
|
349
|
+
</tbody>
|
350
|
+
</table></div>
|
351
|
+
</div>
|
352
|
+
<hr>
|
353
|
+
<div class="refsect2">
|
354
|
+
<a name="gtk-text-view-new"></a><h3>gtk_text_view_new ()</h3>
|
355
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_text_view_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
356
|
+
<p>
|
357
|
+
Creates a new <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>. If you don't call <a class="link" href="GtkTextView.html#gtk-text-view-set-buffer" title="gtk_text_view_set_buffer ()"><code class="function">gtk_text_view_set_buffer()</code></a>
|
358
|
+
before using the text view, an empty default buffer will be created
|
359
|
+
for you. Get the buffer with <a class="link" href="GtkTextView.html#gtk-text-view-get-buffer" title="gtk_text_view_get_buffer ()"><code class="function">gtk_text_view_get_buffer()</code></a>. If you want
|
360
|
+
to specify your own buffer, consider <a class="link" href="GtkTextView.html#gtk-text-view-new-with-buffer" title="gtk_text_view_new_with_buffer ()"><code class="function">gtk_text_view_new_with_buffer()</code></a>.
|
361
|
+
</p>
|
362
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
363
|
+
<colgroup>
|
364
|
+
<col align="left" valign="top">
|
365
|
+
<col>
|
366
|
+
</colgroup>
|
367
|
+
<tbody><tr>
|
368
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
369
|
+
<td>a new <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
370
|
+
</td>
|
371
|
+
</tr></tbody>
|
372
|
+
</table></div>
|
373
|
+
</div>
|
374
|
+
<hr>
|
375
|
+
<div class="refsect2">
|
376
|
+
<a name="gtk-text-view-new-with-buffer"></a><h3>gtk_text_view_new_with_buffer ()</h3>
|
377
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_text_view_new_with_buffer (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
|
378
|
+
<p>
|
379
|
+
Creates a new <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> widget displaying the buffer
|
380
|
+
<em class="parameter"><code>buffer</code></em>. One buffer can be shared among many widgets.
|
381
|
+
<em class="parameter"><code>buffer</code></em> may be <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> to create a default buffer, in which case
|
382
|
+
this function is equivalent to <a class="link" href="GtkTextView.html#gtk-text-view-new" title="gtk_text_view_new ()"><code class="function">gtk_text_view_new()</code></a>. The
|
383
|
+
text view adds its own reference count to the buffer; it does not
|
384
|
+
take over an existing reference.
|
385
|
+
</p>
|
386
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
387
|
+
<colgroup>
|
388
|
+
<col align="left" valign="top">
|
389
|
+
<col>
|
390
|
+
</colgroup>
|
391
|
+
<tbody>
|
392
|
+
<tr>
|
393
|
+
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
394
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
395
|
+
</td>
|
396
|
+
</tr>
|
397
|
+
<tr>
|
398
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
399
|
+
<td>a new <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>.</td>
|
400
|
+
</tr>
|
401
|
+
</tbody>
|
402
|
+
</table></div>
|
403
|
+
</div>
|
404
|
+
<hr>
|
405
|
+
<div class="refsect2">
|
406
|
+
<a name="gtk-text-view-set-buffer"></a><h3>gtk_text_view_set_buffer ()</h3>
|
407
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_buffer (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
408
|
+
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
|
409
|
+
<p>
|
410
|
+
Sets <em class="parameter"><code>buffer</code></em> as the buffer being displayed by <em class="parameter"><code>text_view</code></em>. The previous
|
411
|
+
buffer displayed by the text view is unreferenced, and a reference is
|
412
|
+
added to <em class="parameter"><code>buffer</code></em>. If you owned a reference to <em class="parameter"><code>buffer</code></em> before passing it
|
413
|
+
to this function, you must remove that reference yourself; <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
414
|
+
will not "adopt" it.
|
415
|
+
</p>
|
416
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
417
|
+
<colgroup>
|
418
|
+
<col align="left" valign="top">
|
419
|
+
<col>
|
420
|
+
</colgroup>
|
421
|
+
<tbody>
|
422
|
+
<tr>
|
423
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
424
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
425
|
+
</td>
|
426
|
+
</tr>
|
427
|
+
<tr>
|
428
|
+
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
429
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
430
|
+
</td>
|
431
|
+
</tr>
|
432
|
+
</tbody>
|
433
|
+
</table></div>
|
434
|
+
</div>
|
435
|
+
<hr>
|
436
|
+
<div class="refsect2">
|
437
|
+
<a name="gtk-text-view-get-buffer"></a><h3>gtk_text_view_get_buffer ()</h3>
|
438
|
+
<pre class="programlisting"><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * gtk_text_view_get_buffer (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
439
|
+
<p>
|
440
|
+
Returns the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> being displayed by this text view.
|
441
|
+
The reference count on the buffer is not incremented; the caller
|
442
|
+
of this function won't own a new reference.
|
443
|
+
</p>
|
444
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
445
|
+
<colgroup>
|
446
|
+
<col align="left" valign="top">
|
447
|
+
<col>
|
448
|
+
</colgroup>
|
449
|
+
<tbody>
|
450
|
+
<tr>
|
451
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
452
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
453
|
+
</td>
|
454
|
+
</tr>
|
455
|
+
<tr>
|
456
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
457
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
458
|
+
</td>
|
459
|
+
</tr>
|
460
|
+
</tbody>
|
461
|
+
</table></div>
|
462
|
+
</div>
|
463
|
+
<hr>
|
464
|
+
<div class="refsect2">
|
465
|
+
<a name="gtk-text-view-get-hadjustment"></a><h3>gtk_text_view_get_hadjustment ()</h3>
|
466
|
+
<pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * gtk_text_view_get_hadjustment (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
467
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
468
|
+
<h3 class="title">Warning</h3>
|
469
|
+
<p><code class="literal">gtk_text_view_get_hadjustment</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkScrollable.html#gtk-scrollable-get-hadjustment" title="gtk_scrollable_get_hadjustment ()"><code class="function">gtk_scrollable_get_hadjustment()</code></a></p>
|
470
|
+
</div>
|
471
|
+
<p>
|
472
|
+
Gets the horizontal-scrolling <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>.
|
473
|
+
</p>
|
474
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
475
|
+
<colgroup>
|
476
|
+
<col align="left" valign="top">
|
477
|
+
<col>
|
478
|
+
</colgroup>
|
479
|
+
<tbody>
|
480
|
+
<tr>
|
481
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
482
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
483
|
+
</td>
|
484
|
+
</tr>
|
485
|
+
<tr>
|
486
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
487
|
+
<td>pointer to the horizontal <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
488
|
+
</td>
|
489
|
+
</tr>
|
490
|
+
</tbody>
|
491
|
+
</table></div>
|
492
|
+
<p class="since">Since 2.22</p>
|
493
|
+
</div>
|
494
|
+
<hr>
|
495
|
+
<div class="refsect2">
|
496
|
+
<a name="gtk-text-view-get-vadjustment"></a><h3>gtk_text_view_get_vadjustment ()</h3>
|
497
|
+
<pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * gtk_text_view_get_vadjustment (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
498
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
499
|
+
<h3 class="title">Warning</h3>
|
500
|
+
<p><code class="literal">gtk_text_view_get_vadjustment</code> has been deprecated since version 3.0 and should not be used in newly-written code. Use <a class="link" href="GtkScrollable.html#gtk-scrollable-get-vadjustment" title="gtk_scrollable_get_vadjustment ()"><code class="function">gtk_scrollable_get_vadjustment()</code></a></p>
|
501
|
+
</div>
|
502
|
+
<p>
|
503
|
+
Gets the vertical-scrolling <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>.
|
504
|
+
</p>
|
505
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
506
|
+
<colgroup>
|
507
|
+
<col align="left" valign="top">
|
508
|
+
<col>
|
509
|
+
</colgroup>
|
510
|
+
<tbody>
|
511
|
+
<tr>
|
512
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
513
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
514
|
+
</td>
|
515
|
+
</tr>
|
516
|
+
<tr>
|
517
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
518
|
+
<td>pointer to the vertical <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
519
|
+
</td>
|
520
|
+
</tr>
|
521
|
+
</tbody>
|
522
|
+
</table></div>
|
523
|
+
<p class="since">Since 2.22</p>
|
524
|
+
</div>
|
525
|
+
<hr>
|
526
|
+
<div class="refsect2">
|
527
|
+
<a name="gtk-text-view-scroll-to-mark"></a><h3>gtk_text_view_scroll_to_mark ()</h3>
|
528
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_scroll_to_mark (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
529
|
+
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
|
530
|
+
<em class="parameter"><code><span class="type">gdouble</span> within_margin</code></em>,
|
531
|
+
<em class="parameter"><code><span class="type">gboolean</span> use_align</code></em>,
|
532
|
+
<em class="parameter"><code><span class="type">gdouble</span> xalign</code></em>,
|
533
|
+
<em class="parameter"><code><span class="type">gdouble</span> yalign</code></em>);</pre>
|
534
|
+
<p>
|
535
|
+
Scrolls <em class="parameter"><code>text_view</code></em> so that <em class="parameter"><code>mark</code></em> is on the screen in the position
|
536
|
+
indicated by <em class="parameter"><code>xalign</code></em> and <em class="parameter"><code>yalign</code></em>. An alignment of 0.0 indicates
|
537
|
+
left or top, 1.0 indicates right or bottom, 0.5 means center.
|
538
|
+
If <em class="parameter"><code>use_align</code></em> is <code class="literal">FALSE</code>, the text scrolls the minimal distance to
|
539
|
+
get the mark onscreen, possibly not scrolling at all. The effective
|
540
|
+
screen for purposes of this function is reduced by a margin of size
|
541
|
+
<em class="parameter"><code>within_margin</code></em>.
|
542
|
+
</p>
|
543
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
544
|
+
<colgroup>
|
545
|
+
<col align="left" valign="top">
|
546
|
+
<col>
|
547
|
+
</colgroup>
|
548
|
+
<tbody>
|
549
|
+
<tr>
|
550
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
551
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
552
|
+
</td>
|
553
|
+
</tr>
|
554
|
+
<tr>
|
555
|
+
<td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
|
556
|
+
<td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
|
557
|
+
</td>
|
558
|
+
</tr>
|
559
|
+
<tr>
|
560
|
+
<td><p><span class="term"><em class="parameter"><code>within_margin</code></em> :</span></p></td>
|
561
|
+
<td>margin as a [0.0,0.5) fraction of screen size</td>
|
562
|
+
</tr>
|
563
|
+
<tr>
|
564
|
+
<td><p><span class="term"><em class="parameter"><code>use_align</code></em> :</span></p></td>
|
565
|
+
<td>whether to use alignment arguments (if <code class="literal">FALSE</code>, just
|
566
|
+
get the mark onscreen)</td>
|
567
|
+
</tr>
|
568
|
+
<tr>
|
569
|
+
<td><p><span class="term"><em class="parameter"><code>xalign</code></em> :</span></p></td>
|
570
|
+
<td>horizontal alignment of mark within visible area</td>
|
571
|
+
</tr>
|
572
|
+
<tr>
|
573
|
+
<td><p><span class="term"><em class="parameter"><code>yalign</code></em> :</span></p></td>
|
574
|
+
<td>vertical alignment of mark within visible area</td>
|
575
|
+
</tr>
|
576
|
+
</tbody>
|
577
|
+
</table></div>
|
578
|
+
</div>
|
579
|
+
<hr>
|
580
|
+
<div class="refsect2">
|
581
|
+
<a name="gtk-text-view-scroll-to-iter"></a><h3>gtk_text_view_scroll_to_iter ()</h3>
|
582
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_scroll_to_iter (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
583
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
584
|
+
<em class="parameter"><code><span class="type">gdouble</span> within_margin</code></em>,
|
585
|
+
<em class="parameter"><code><span class="type">gboolean</span> use_align</code></em>,
|
586
|
+
<em class="parameter"><code><span class="type">gdouble</span> xalign</code></em>,
|
587
|
+
<em class="parameter"><code><span class="type">gdouble</span> yalign</code></em>);</pre>
|
588
|
+
<p>
|
589
|
+
Scrolls <em class="parameter"><code>text_view</code></em> so that <em class="parameter"><code>iter</code></em> is on the screen in the position
|
590
|
+
indicated by <em class="parameter"><code>xalign</code></em> and <em class="parameter"><code>yalign</code></em>. An alignment of 0.0 indicates
|
591
|
+
left or top, 1.0 indicates right or bottom, 0.5 means center.
|
592
|
+
If <em class="parameter"><code>use_align</code></em> is <code class="literal">FALSE</code>, the text scrolls the minimal distance to
|
593
|
+
get the mark onscreen, possibly not scrolling at all. The effective
|
594
|
+
screen for purposes of this function is reduced by a margin of size
|
595
|
+
<em class="parameter"><code>within_margin</code></em>.
|
596
|
+
</p>
|
597
|
+
<p>
|
598
|
+
Note that this function uses the currently-computed height of the
|
599
|
+
lines in the text buffer. Line heights are computed in an idle
|
600
|
+
handler; so this function may not have the desired effect if it's
|
601
|
+
called before the height computations. To avoid oddness, consider
|
602
|
+
using <a class="link" href="GtkTextView.html#gtk-text-view-scroll-to-mark" title="gtk_text_view_scroll_to_mark ()"><code class="function">gtk_text_view_scroll_to_mark()</code></a> which saves a point to be
|
603
|
+
scrolled to after line validation.
|
604
|
+
</p>
|
605
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
606
|
+
<colgroup>
|
607
|
+
<col align="left" valign="top">
|
608
|
+
<col>
|
609
|
+
</colgroup>
|
610
|
+
<tbody>
|
611
|
+
<tr>
|
612
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
613
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
614
|
+
</td>
|
615
|
+
</tr>
|
616
|
+
<tr>
|
617
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
618
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
|
619
|
+
</td>
|
620
|
+
</tr>
|
621
|
+
<tr>
|
622
|
+
<td><p><span class="term"><em class="parameter"><code>within_margin</code></em> :</span></p></td>
|
623
|
+
<td>margin as a [0.0,0.5) fraction of screen size</td>
|
624
|
+
</tr>
|
625
|
+
<tr>
|
626
|
+
<td><p><span class="term"><em class="parameter"><code>use_align</code></em> :</span></p></td>
|
627
|
+
<td>whether to use alignment arguments (if <code class="literal">FALSE</code>,
|
628
|
+
just get the mark onscreen)</td>
|
629
|
+
</tr>
|
630
|
+
<tr>
|
631
|
+
<td><p><span class="term"><em class="parameter"><code>xalign</code></em> :</span></p></td>
|
632
|
+
<td>horizontal alignment of mark within visible area</td>
|
633
|
+
</tr>
|
634
|
+
<tr>
|
635
|
+
<td><p><span class="term"><em class="parameter"><code>yalign</code></em> :</span></p></td>
|
636
|
+
<td>vertical alignment of mark within visible area</td>
|
637
|
+
</tr>
|
638
|
+
<tr>
|
639
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
640
|
+
<td>
|
641
|
+
<code class="literal">TRUE</code> if scrolling occurred</td>
|
642
|
+
</tr>
|
643
|
+
</tbody>
|
644
|
+
</table></div>
|
645
|
+
</div>
|
646
|
+
<hr>
|
647
|
+
<div class="refsect2">
|
648
|
+
<a name="gtk-text-view-scroll-mark-onscreen"></a><h3>gtk_text_view_scroll_mark_onscreen ()</h3>
|
649
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_scroll_mark_onscreen (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
650
|
+
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
651
|
+
<p>
|
652
|
+
Scrolls <em class="parameter"><code>text_view</code></em> the minimum distance such that <em class="parameter"><code>mark</code></em> is contained
|
653
|
+
within the visible area of the widget.
|
654
|
+
</p>
|
655
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
656
|
+
<colgroup>
|
657
|
+
<col align="left" valign="top">
|
658
|
+
<col>
|
659
|
+
</colgroup>
|
660
|
+
<tbody>
|
661
|
+
<tr>
|
662
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
663
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
664
|
+
</td>
|
665
|
+
</tr>
|
666
|
+
<tr>
|
667
|
+
<td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
|
668
|
+
<td>a mark in the buffer for <em class="parameter"><code>text_view</code></em>
|
669
|
+
</td>
|
670
|
+
</tr>
|
671
|
+
</tbody>
|
672
|
+
</table></div>
|
673
|
+
</div>
|
674
|
+
<hr>
|
675
|
+
<div class="refsect2">
|
676
|
+
<a name="gtk-text-view-move-mark-onscreen"></a><h3>gtk_text_view_move_mark_onscreen ()</h3>
|
677
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_move_mark_onscreen (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
678
|
+
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
679
|
+
<p>
|
680
|
+
Moves a mark within the buffer so that it's
|
681
|
+
located within the currently-visible text area.
|
682
|
+
</p>
|
683
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
684
|
+
<colgroup>
|
685
|
+
<col align="left" valign="top">
|
686
|
+
<col>
|
687
|
+
</colgroup>
|
688
|
+
<tbody>
|
689
|
+
<tr>
|
690
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
691
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
692
|
+
</td>
|
693
|
+
</tr>
|
694
|
+
<tr>
|
695
|
+
<td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
|
696
|
+
<td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
|
697
|
+
</td>
|
698
|
+
</tr>
|
699
|
+
<tr>
|
700
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
701
|
+
<td>
|
702
|
+
<code class="literal">TRUE</code> if the mark moved (wasn't already onscreen)</td>
|
703
|
+
</tr>
|
704
|
+
</tbody>
|
705
|
+
</table></div>
|
706
|
+
</div>
|
707
|
+
<hr>
|
708
|
+
<div class="refsect2">
|
709
|
+
<a name="gtk-text-view-place-cursor-onscreen"></a><h3>gtk_text_view_place_cursor_onscreen ()</h3>
|
710
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_place_cursor_onscreen (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
711
|
+
<p>
|
712
|
+
Moves the cursor to the currently visible region of the
|
713
|
+
buffer, it it isn't there already.
|
714
|
+
</p>
|
715
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
716
|
+
<colgroup>
|
717
|
+
<col align="left" valign="top">
|
718
|
+
<col>
|
719
|
+
</colgroup>
|
720
|
+
<tbody>
|
721
|
+
<tr>
|
722
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
723
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
724
|
+
</td>
|
725
|
+
</tr>
|
726
|
+
<tr>
|
727
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
728
|
+
<td>
|
729
|
+
<code class="literal">TRUE</code> if the cursor had to be moved.</td>
|
730
|
+
</tr>
|
731
|
+
</tbody>
|
732
|
+
</table></div>
|
733
|
+
</div>
|
734
|
+
<hr>
|
735
|
+
<div class="refsect2">
|
736
|
+
<a name="gtk-text-view-get-visible-rect"></a><h3>gtk_text_view_get_visible_rect ()</h3>
|
737
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_get_visible_rect (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
738
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *visible_rect</code></em>);</pre>
|
739
|
+
<p>
|
740
|
+
Fills <em class="parameter"><code>visible_rect</code></em> with the currently-visible
|
741
|
+
region of the buffer, in buffer coordinates. Convert to window coordinates
|
742
|
+
with <a class="link" href="GtkTextView.html#gtk-text-view-buffer-to-window-coords" title="gtk_text_view_buffer_to_window_coords ()"><code class="function">gtk_text_view_buffer_to_window_coords()</code></a>.
|
743
|
+
</p>
|
744
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
745
|
+
<colgroup>
|
746
|
+
<col align="left" valign="top">
|
747
|
+
<col>
|
748
|
+
</colgroup>
|
749
|
+
<tbody>
|
750
|
+
<tr>
|
751
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
752
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
753
|
+
</td>
|
754
|
+
</tr>
|
755
|
+
<tr>
|
756
|
+
<td><p><span class="term"><em class="parameter"><code>visible_rect</code></em> :</span></p></td>
|
757
|
+
<td>rectangle to fill. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
758
|
+
</td>
|
759
|
+
</tr>
|
760
|
+
</tbody>
|
761
|
+
</table></div>
|
762
|
+
</div>
|
763
|
+
<hr>
|
764
|
+
<div class="refsect2">
|
765
|
+
<a name="gtk-text-view-get-iter-location"></a><h3>gtk_text_view_get_iter_location ()</h3>
|
766
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_get_iter_location (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
767
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
768
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *location</code></em>);</pre>
|
769
|
+
<p>
|
770
|
+
Gets a rectangle which roughly contains the character at <em class="parameter"><code>iter</code></em>.
|
771
|
+
The rectangle position is in buffer coordinates; use
|
772
|
+
<a class="link" href="GtkTextView.html#gtk-text-view-buffer-to-window-coords" title="gtk_text_view_buffer_to_window_coords ()"><code class="function">gtk_text_view_buffer_to_window_coords()</code></a> to convert these
|
773
|
+
coordinates to coordinates for one of the windows in the text view.
|
774
|
+
</p>
|
775
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
776
|
+
<colgroup>
|
777
|
+
<col align="left" valign="top">
|
778
|
+
<col>
|
779
|
+
</colgroup>
|
780
|
+
<tbody>
|
781
|
+
<tr>
|
782
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
783
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
784
|
+
</td>
|
785
|
+
</tr>
|
786
|
+
<tr>
|
787
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
788
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
|
789
|
+
</td>
|
790
|
+
</tr>
|
791
|
+
<tr>
|
792
|
+
<td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
|
793
|
+
<td>bounds of the character at <em class="parameter"><code>iter</code></em>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
794
|
+
</td>
|
795
|
+
</tr>
|
796
|
+
</tbody>
|
797
|
+
</table></div>
|
798
|
+
</div>
|
799
|
+
<hr>
|
800
|
+
<div class="refsect2">
|
801
|
+
<a name="gtk-text-view-get-cursor-locations"></a><h3>gtk_text_view_get_cursor_locations ()</h3>
|
802
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_get_cursor_locations (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
803
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
804
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *strong</code></em>,
|
805
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *weak</code></em>);</pre>
|
806
|
+
<p>
|
807
|
+
Given an <em class="parameter"><code>iter</code></em> within a text layout, determine the positions of the
|
808
|
+
strong and weak cursors if the insertion point is at that
|
809
|
+
iterator. The position of each cursor is stored as a zero-width
|
810
|
+
rectangle. The strong cursor location is the location where
|
811
|
+
characters of the directionality equal to the base direction of the
|
812
|
+
paragraph are inserted. The weak cursor location is the location
|
813
|
+
where characters of the directionality opposite to the base
|
814
|
+
direction of the paragraph are inserted.
|
815
|
+
</p>
|
816
|
+
<p>
|
817
|
+
If <em class="parameter"><code>iter</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, the actual cursor position is used.
|
818
|
+
</p>
|
819
|
+
<p>
|
820
|
+
Note that if <em class="parameter"><code>iter</code></em> happens to be the actual cursor position, and
|
821
|
+
there is currently an IM preedit sequence being entered, the
|
822
|
+
returned locations will be adjusted to account for the preedit
|
823
|
+
cursor's offset within the preedit sequence.
|
824
|
+
</p>
|
825
|
+
<p>
|
826
|
+
The rectangle position is in buffer coordinates; use
|
827
|
+
<a class="link" href="GtkTextView.html#gtk-text-view-buffer-to-window-coords" title="gtk_text_view_buffer_to_window_coords ()"><code class="function">gtk_text_view_buffer_to_window_coords()</code></a> to convert these
|
828
|
+
coordinates to coordinates for one of the windows in the text view.
|
829
|
+
</p>
|
830
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
831
|
+
<colgroup>
|
832
|
+
<col align="left" valign="top">
|
833
|
+
<col>
|
834
|
+
</colgroup>
|
835
|
+
<tbody>
|
836
|
+
<tr>
|
837
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
838
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
839
|
+
</td>
|
840
|
+
</tr>
|
841
|
+
<tr>
|
842
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
843
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
844
|
+
</td>
|
845
|
+
</tr>
|
846
|
+
<tr>
|
847
|
+
<td><p><span class="term"><em class="parameter"><code>strong</code></em> :</span></p></td>
|
848
|
+
<td>location to store the strong
|
849
|
+
cursor position (may be <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>). <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
850
|
+
</td>
|
851
|
+
</tr>
|
852
|
+
<tr>
|
853
|
+
<td><p><span class="term"><em class="parameter"><code>weak</code></em> :</span></p></td>
|
854
|
+
<td>location to store the weak
|
855
|
+
cursor position (may be <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>). <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
856
|
+
</td>
|
857
|
+
</tr>
|
858
|
+
</tbody>
|
859
|
+
</table></div>
|
860
|
+
<p class="since">Since 3.0</p>
|
861
|
+
</div>
|
862
|
+
<hr>
|
863
|
+
<div class="refsect2">
|
864
|
+
<a name="gtk-text-view-get-line-at-y"></a><h3>gtk_text_view_get_line_at_y ()</h3>
|
865
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_get_line_at_y (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
866
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *target_iter</code></em>,
|
867
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>,
|
868
|
+
<em class="parameter"><code><span class="type">gint</span> *line_top</code></em>);</pre>
|
869
|
+
<p>
|
870
|
+
Gets the <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> at the start of the line containing
|
871
|
+
the coordinate <em class="parameter"><code>y</code></em>. <em class="parameter"><code>y</code></em> is in buffer coordinates, convert from
|
872
|
+
window coordinates with <a class="link" href="GtkTextView.html#gtk-text-view-window-to-buffer-coords" title="gtk_text_view_window_to_buffer_coords ()"><code class="function">gtk_text_view_window_to_buffer_coords()</code></a>.
|
873
|
+
If non-<a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, <em class="parameter"><code>line_top</code></em> will be filled with the coordinate of the top
|
874
|
+
edge of the line.
|
875
|
+
</p>
|
876
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
877
|
+
<colgroup>
|
878
|
+
<col align="left" valign="top">
|
879
|
+
<col>
|
880
|
+
</colgroup>
|
881
|
+
<tbody>
|
882
|
+
<tr>
|
883
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
884
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
885
|
+
</td>
|
886
|
+
</tr>
|
887
|
+
<tr>
|
888
|
+
<td><p><span class="term"><em class="parameter"><code>target_iter</code></em> :</span></p></td>
|
889
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
890
|
+
</td>
|
891
|
+
</tr>
|
892
|
+
<tr>
|
893
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
894
|
+
<td>a y coordinate</td>
|
895
|
+
</tr>
|
896
|
+
<tr>
|
897
|
+
<td><p><span class="term"><em class="parameter"><code>line_top</code></em> :</span></p></td>
|
898
|
+
<td>return location for top coordinate of the line. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
899
|
+
</td>
|
900
|
+
</tr>
|
901
|
+
</tbody>
|
902
|
+
</table></div>
|
903
|
+
</div>
|
904
|
+
<hr>
|
905
|
+
<div class="refsect2">
|
906
|
+
<a name="gtk-text-view-get-line-yrange"></a><h3>gtk_text_view_get_line_yrange ()</h3>
|
907
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_get_line_yrange (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
908
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
909
|
+
<em class="parameter"><code><span class="type">gint</span> *y</code></em>,
|
910
|
+
<em class="parameter"><code><span class="type">gint</span> *height</code></em>);</pre>
|
911
|
+
<p>
|
912
|
+
Gets the y coordinate of the top of the line containing <em class="parameter"><code>iter</code></em>,
|
913
|
+
and the height of the line. The coordinate is a buffer coordinate;
|
914
|
+
convert to window coordinates with <a class="link" href="GtkTextView.html#gtk-text-view-buffer-to-window-coords" title="gtk_text_view_buffer_to_window_coords ()"><code class="function">gtk_text_view_buffer_to_window_coords()</code></a>.
|
915
|
+
</p>
|
916
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
917
|
+
<colgroup>
|
918
|
+
<col align="left" valign="top">
|
919
|
+
<col>
|
920
|
+
</colgroup>
|
921
|
+
<tbody>
|
922
|
+
<tr>
|
923
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
924
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
925
|
+
</td>
|
926
|
+
</tr>
|
927
|
+
<tr>
|
928
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
929
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
|
930
|
+
</td>
|
931
|
+
</tr>
|
932
|
+
<tr>
|
933
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
934
|
+
<td>return location for a y coordinate. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
935
|
+
</td>
|
936
|
+
</tr>
|
937
|
+
<tr>
|
938
|
+
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
939
|
+
<td>return location for a height. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
940
|
+
</td>
|
941
|
+
</tr>
|
942
|
+
</tbody>
|
943
|
+
</table></div>
|
944
|
+
</div>
|
945
|
+
<hr>
|
946
|
+
<div class="refsect2">
|
947
|
+
<a name="gtk-text-view-get-iter-at-location"></a><h3>gtk_text_view_get_iter_at_location ()</h3>
|
948
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_get_iter_at_location (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
949
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
950
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
951
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
|
952
|
+
<p>
|
953
|
+
Retrieves the iterator at buffer coordinates <em class="parameter"><code>x</code></em> and <em class="parameter"><code>y</code></em>. Buffer
|
954
|
+
coordinates are coordinates for the entire buffer, not just the
|
955
|
+
currently-displayed portion. If you have coordinates from an
|
956
|
+
event, you have to convert those to buffer coordinates with
|
957
|
+
<a class="link" href="GtkTextView.html#gtk-text-view-window-to-buffer-coords" title="gtk_text_view_window_to_buffer_coords ()"><code class="function">gtk_text_view_window_to_buffer_coords()</code></a>.
|
958
|
+
</p>
|
959
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
960
|
+
<colgroup>
|
961
|
+
<col align="left" valign="top">
|
962
|
+
<col>
|
963
|
+
</colgroup>
|
964
|
+
<tbody>
|
965
|
+
<tr>
|
966
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
967
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
968
|
+
</td>
|
969
|
+
</tr>
|
970
|
+
<tr>
|
971
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
972
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
973
|
+
</td>
|
974
|
+
</tr>
|
975
|
+
<tr>
|
976
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
977
|
+
<td>x position, in buffer coordinates</td>
|
978
|
+
</tr>
|
979
|
+
<tr>
|
980
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
981
|
+
<td>y position, in buffer coordinates</td>
|
982
|
+
</tr>
|
983
|
+
</tbody>
|
984
|
+
</table></div>
|
985
|
+
</div>
|
986
|
+
<hr>
|
987
|
+
<div class="refsect2">
|
988
|
+
<a name="gtk-text-view-get-iter-at-position"></a><h3>gtk_text_view_get_iter_at_position ()</h3>
|
989
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_get_iter_at_position (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
990
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
991
|
+
<em class="parameter"><code><span class="type">gint</span> *trailing</code></em>,
|
992
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
993
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
|
994
|
+
<p>
|
995
|
+
Retrieves the iterator pointing to the character at buffer
|
996
|
+
coordinates <em class="parameter"><code>x</code></em> and <em class="parameter"><code>y</code></em>. Buffer coordinates are coordinates for
|
997
|
+
the entire buffer, not just the currently-displayed portion.
|
998
|
+
If you have coordinates from an event, you have to convert
|
999
|
+
those to buffer coordinates with
|
1000
|
+
<a class="link" href="GtkTextView.html#gtk-text-view-window-to-buffer-coords" title="gtk_text_view_window_to_buffer_coords ()"><code class="function">gtk_text_view_window_to_buffer_coords()</code></a>.
|
1001
|
+
</p>
|
1002
|
+
<p>
|
1003
|
+
Note that this is different from <a class="link" href="GtkTextView.html#gtk-text-view-get-iter-at-location" title="gtk_text_view_get_iter_at_location ()"><code class="function">gtk_text_view_get_iter_at_location()</code></a>,
|
1004
|
+
which returns cursor locations, i.e. positions <span class="emphasis"><em>between</em></span>
|
1005
|
+
characters.
|
1006
|
+
</p>
|
1007
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1008
|
+
<colgroup>
|
1009
|
+
<col align="left" valign="top">
|
1010
|
+
<col>
|
1011
|
+
</colgroup>
|
1012
|
+
<tbody>
|
1013
|
+
<tr>
|
1014
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1015
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1016
|
+
</td>
|
1017
|
+
</tr>
|
1018
|
+
<tr>
|
1019
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1020
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
1021
|
+
</td>
|
1022
|
+
</tr>
|
1023
|
+
<tr>
|
1024
|
+
<td><p><span class="term"><em class="parameter"><code>trailing</code></em> :</span></p></td>
|
1025
|
+
<td>if non-<a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, location to store an integer indicating where
|
1026
|
+
in the grapheme the user clicked. It will either be
|
1027
|
+
zero, or the number of characters in the grapheme.
|
1028
|
+
0 represents the trailing edge of the grapheme. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1029
|
+
</td>
|
1030
|
+
</tr>
|
1031
|
+
<tr>
|
1032
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
1033
|
+
<td>x position, in buffer coordinates</td>
|
1034
|
+
</tr>
|
1035
|
+
<tr>
|
1036
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
1037
|
+
<td>y position, in buffer coordinates</td>
|
1038
|
+
</tr>
|
1039
|
+
</tbody>
|
1040
|
+
</table></div>
|
1041
|
+
<p class="since">Since 2.6</p>
|
1042
|
+
</div>
|
1043
|
+
<hr>
|
1044
|
+
<div class="refsect2">
|
1045
|
+
<a name="gtk-text-view-buffer-to-window-coords"></a><h3>gtk_text_view_buffer_to_window_coords ()</h3>
|
1046
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_buffer_to_window_coords
|
1047
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1048
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>,
|
1049
|
+
<em class="parameter"><code><span class="type">gint</span> buffer_x</code></em>,
|
1050
|
+
<em class="parameter"><code><span class="type">gint</span> buffer_y</code></em>,
|
1051
|
+
<em class="parameter"><code><span class="type">gint</span> *window_x</code></em>,
|
1052
|
+
<em class="parameter"><code><span class="type">gint</span> *window_y</code></em>);</pre>
|
1053
|
+
<p>
|
1054
|
+
Converts coordinate (<em class="parameter"><code>buffer_x</code></em>, <em class="parameter"><code>buffer_y</code></em>) to coordinates for the window
|
1055
|
+
<em class="parameter"><code>win</code></em>, and stores the result in (<em class="parameter"><code>window_x</code></em>, <em class="parameter"><code>window_y</code></em>).
|
1056
|
+
</p>
|
1057
|
+
<p>
|
1058
|
+
Note that you can't convert coordinates for a nonexisting window (see
|
1059
|
+
<a class="link" href="GtkTextView.html#gtk-text-view-set-border-window-size" title="gtk_text_view_set_border_window_size ()"><code class="function">gtk_text_view_set_border_window_size()</code></a>).
|
1060
|
+
</p>
|
1061
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1062
|
+
<colgroup>
|
1063
|
+
<col align="left" valign="top">
|
1064
|
+
<col>
|
1065
|
+
</colgroup>
|
1066
|
+
<tbody>
|
1067
|
+
<tr>
|
1068
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1069
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1070
|
+
</td>
|
1071
|
+
</tr>
|
1072
|
+
<tr>
|
1073
|
+
<td><p><span class="term"><em class="parameter"><code>win</code></em> :</span></p></td>
|
1074
|
+
<td>a <a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> except <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-PRIVATE:CAPS"><span class="type">GTK_TEXT_WINDOW_PRIVATE</span></a>
|
1075
|
+
</td>
|
1076
|
+
</tr>
|
1077
|
+
<tr>
|
1078
|
+
<td><p><span class="term"><em class="parameter"><code>buffer_x</code></em> :</span></p></td>
|
1079
|
+
<td>buffer x coordinate</td>
|
1080
|
+
</tr>
|
1081
|
+
<tr>
|
1082
|
+
<td><p><span class="term"><em class="parameter"><code>buffer_y</code></em> :</span></p></td>
|
1083
|
+
<td>buffer y coordinate</td>
|
1084
|
+
</tr>
|
1085
|
+
<tr>
|
1086
|
+
<td><p><span class="term"><em class="parameter"><code>window_x</code></em> :</span></p></td>
|
1087
|
+
<td>window x coordinate return location or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1088
|
+
</td>
|
1089
|
+
</tr>
|
1090
|
+
<tr>
|
1091
|
+
<td><p><span class="term"><em class="parameter"><code>window_y</code></em> :</span></p></td>
|
1092
|
+
<td>window y coordinate return location or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1093
|
+
</td>
|
1094
|
+
</tr>
|
1095
|
+
</tbody>
|
1096
|
+
</table></div>
|
1097
|
+
</div>
|
1098
|
+
<hr>
|
1099
|
+
<div class="refsect2">
|
1100
|
+
<a name="gtk-text-view-window-to-buffer-coords"></a><h3>gtk_text_view_window_to_buffer_coords ()</h3>
|
1101
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_window_to_buffer_coords
|
1102
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1103
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>,
|
1104
|
+
<em class="parameter"><code><span class="type">gint</span> window_x</code></em>,
|
1105
|
+
<em class="parameter"><code><span class="type">gint</span> window_y</code></em>,
|
1106
|
+
<em class="parameter"><code><span class="type">gint</span> *buffer_x</code></em>,
|
1107
|
+
<em class="parameter"><code><span class="type">gint</span> *buffer_y</code></em>);</pre>
|
1108
|
+
<p>
|
1109
|
+
Converts coordinates on the window identified by <em class="parameter"><code>win</code></em> to buffer
|
1110
|
+
coordinates, storing the result in (<em class="parameter"><code>buffer_x</code></em>,<em class="parameter"><code>buffer_y</code></em>).
|
1111
|
+
</p>
|
1112
|
+
<p>
|
1113
|
+
Note that you can't convert coordinates for a nonexisting window (see
|
1114
|
+
<a class="link" href="GtkTextView.html#gtk-text-view-set-border-window-size" title="gtk_text_view_set_border_window_size ()"><code class="function">gtk_text_view_set_border_window_size()</code></a>).
|
1115
|
+
</p>
|
1116
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1117
|
+
<colgroup>
|
1118
|
+
<col align="left" valign="top">
|
1119
|
+
<col>
|
1120
|
+
</colgroup>
|
1121
|
+
<tbody>
|
1122
|
+
<tr>
|
1123
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1124
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1125
|
+
</td>
|
1126
|
+
</tr>
|
1127
|
+
<tr>
|
1128
|
+
<td><p><span class="term"><em class="parameter"><code>win</code></em> :</span></p></td>
|
1129
|
+
<td>a <a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> except <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-PRIVATE:CAPS"><span class="type">GTK_TEXT_WINDOW_PRIVATE</span></a>
|
1130
|
+
</td>
|
1131
|
+
</tr>
|
1132
|
+
<tr>
|
1133
|
+
<td><p><span class="term"><em class="parameter"><code>window_x</code></em> :</span></p></td>
|
1134
|
+
<td>window x coordinate</td>
|
1135
|
+
</tr>
|
1136
|
+
<tr>
|
1137
|
+
<td><p><span class="term"><em class="parameter"><code>window_y</code></em> :</span></p></td>
|
1138
|
+
<td>window y coordinate</td>
|
1139
|
+
</tr>
|
1140
|
+
<tr>
|
1141
|
+
<td><p><span class="term"><em class="parameter"><code>buffer_x</code></em> :</span></p></td>
|
1142
|
+
<td>buffer x coordinate return location or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1143
|
+
</td>
|
1144
|
+
</tr>
|
1145
|
+
<tr>
|
1146
|
+
<td><p><span class="term"><em class="parameter"><code>buffer_y</code></em> :</span></p></td>
|
1147
|
+
<td>buffer y coordinate return location or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1148
|
+
</td>
|
1149
|
+
</tr>
|
1150
|
+
</tbody>
|
1151
|
+
</table></div>
|
1152
|
+
</div>
|
1153
|
+
<hr>
|
1154
|
+
<div class="refsect2">
|
1155
|
+
<a name="gtk-text-view-get-window"></a><h3>gtk_text_view_get_window ()</h3>
|
1156
|
+
<pre class="programlisting"><a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * gtk_text_view_get_window (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1157
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> win</code></em>);</pre>
|
1158
|
+
<p>
|
1159
|
+
Retrieves the <a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> corresponding to an area of the text view;
|
1160
|
+
possible windows include the overall widget window, child windows
|
1161
|
+
on the left, right, top, bottom, and the window that displays the
|
1162
|
+
text buffer. Windows are <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> and nonexistent if their width or
|
1163
|
+
height is 0, and are nonexistent before the widget has been
|
1164
|
+
realized.
|
1165
|
+
</p>
|
1166
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1167
|
+
<colgroup>
|
1168
|
+
<col align="left" valign="top">
|
1169
|
+
<col>
|
1170
|
+
</colgroup>
|
1171
|
+
<tbody>
|
1172
|
+
<tr>
|
1173
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1174
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1175
|
+
</td>
|
1176
|
+
</tr>
|
1177
|
+
<tr>
|
1178
|
+
<td><p><span class="term"><em class="parameter"><code>win</code></em> :</span></p></td>
|
1179
|
+
<td>window to get</td>
|
1180
|
+
</tr>
|
1181
|
+
<tr>
|
1182
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1183
|
+
<td>a <a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1184
|
+
</td>
|
1185
|
+
</tr>
|
1186
|
+
</tbody>
|
1187
|
+
</table></div>
|
1188
|
+
</div>
|
1189
|
+
<hr>
|
1190
|
+
<div class="refsect2">
|
1191
|
+
<a name="gtk-text-view-get-window-type"></a><h3>gtk_text_view_get_window_type ()</h3>
|
1192
|
+
<pre class="programlisting"><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="returnvalue">GtkTextWindowType</span></a> gtk_text_view_get_window_type (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1193
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> *window</code></em>);</pre>
|
1194
|
+
<p>
|
1195
|
+
Usually used to find out which window an event corresponds to.
|
1196
|
+
If you connect to an event signal on <em class="parameter"><code>text_view</code></em>, this function
|
1197
|
+
should be called on <code class="literal">event->window</code> to
|
1198
|
+
see which window it was.
|
1199
|
+
</p>
|
1200
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1201
|
+
<colgroup>
|
1202
|
+
<col align="left" valign="top">
|
1203
|
+
<col>
|
1204
|
+
</colgroup>
|
1205
|
+
<tbody>
|
1206
|
+
<tr>
|
1207
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1208
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1209
|
+
</td>
|
1210
|
+
</tr>
|
1211
|
+
<tr>
|
1212
|
+
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
|
1213
|
+
<td>a window type</td>
|
1214
|
+
</tr>
|
1215
|
+
<tr>
|
1216
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1217
|
+
<td>the window type.</td>
|
1218
|
+
</tr>
|
1219
|
+
</tbody>
|
1220
|
+
</table></div>
|
1221
|
+
</div>
|
1222
|
+
<hr>
|
1223
|
+
<div class="refsect2">
|
1224
|
+
<a name="gtk-text-view-set-border-window-size"></a><h3>gtk_text_view_set_border_window_size ()</h3>
|
1225
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_border_window_size
|
1226
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1227
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> type</code></em>,
|
1228
|
+
<em class="parameter"><code><span class="type">gint</span> size</code></em>);</pre>
|
1229
|
+
<p>
|
1230
|
+
Sets the width of <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-LEFT:CAPS"><code class="literal">GTK_TEXT_WINDOW_LEFT</code></a> or <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-RIGHT:CAPS"><code class="literal">GTK_TEXT_WINDOW_RIGHT</code></a>,
|
1231
|
+
or the height of <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-TOP:CAPS"><code class="literal">GTK_TEXT_WINDOW_TOP</code></a> or <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-BOTTOM:CAPS"><code class="literal">GTK_TEXT_WINDOW_BOTTOM</code></a>.
|
1232
|
+
Automatically destroys the corresponding window if the size is set
|
1233
|
+
to 0, and creates the window if the size is set to non-zero. This
|
1234
|
+
function can only be used for the "border windows," it doesn't work
|
1235
|
+
with <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-WIDGET:CAPS"><span class="type">GTK_TEXT_WINDOW_WIDGET</span></a>, <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-TEXT:CAPS"><span class="type">GTK_TEXT_WINDOW_TEXT</span></a>, or
|
1236
|
+
<a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-PRIVATE:CAPS"><span class="type">GTK_TEXT_WINDOW_PRIVATE</span></a>.
|
1237
|
+
</p>
|
1238
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1239
|
+
<colgroup>
|
1240
|
+
<col align="left" valign="top">
|
1241
|
+
<col>
|
1242
|
+
</colgroup>
|
1243
|
+
<tbody>
|
1244
|
+
<tr>
|
1245
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1246
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1247
|
+
</td>
|
1248
|
+
</tr>
|
1249
|
+
<tr>
|
1250
|
+
<td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
|
1251
|
+
<td>window to affect</td>
|
1252
|
+
</tr>
|
1253
|
+
<tr>
|
1254
|
+
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
1255
|
+
<td>width or height of the window</td>
|
1256
|
+
</tr>
|
1257
|
+
</tbody>
|
1258
|
+
</table></div>
|
1259
|
+
</div>
|
1260
|
+
<hr>
|
1261
|
+
<div class="refsect2">
|
1262
|
+
<a name="gtk-text-view-get-border-window-size"></a><h3>gtk_text_view_get_border_window_size ()</h3>
|
1263
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_view_get_border_window_size
|
1264
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1265
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> type</code></em>);</pre>
|
1266
|
+
<p>
|
1267
|
+
Gets the width of the specified border window. See
|
1268
|
+
<a class="link" href="GtkTextView.html#gtk-text-view-set-border-window-size" title="gtk_text_view_set_border_window_size ()"><code class="function">gtk_text_view_set_border_window_size()</code></a>.
|
1269
|
+
</p>
|
1270
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1271
|
+
<colgroup>
|
1272
|
+
<col align="left" valign="top">
|
1273
|
+
<col>
|
1274
|
+
</colgroup>
|
1275
|
+
<tbody>
|
1276
|
+
<tr>
|
1277
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1278
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1279
|
+
</td>
|
1280
|
+
</tr>
|
1281
|
+
<tr>
|
1282
|
+
<td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
|
1283
|
+
<td>window to return size from</td>
|
1284
|
+
</tr>
|
1285
|
+
<tr>
|
1286
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1287
|
+
<td>width of window</td>
|
1288
|
+
</tr>
|
1289
|
+
</tbody>
|
1290
|
+
</table></div>
|
1291
|
+
</div>
|
1292
|
+
<hr>
|
1293
|
+
<div class="refsect2">
|
1294
|
+
<a name="gtk-text-view-forward-display-line"></a><h3>gtk_text_view_forward_display_line ()</h3>
|
1295
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_forward_display_line (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1296
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
|
1297
|
+
<p>
|
1298
|
+
Moves the given <em class="parameter"><code>iter</code></em> forward by one display (wrapped) line.
|
1299
|
+
A display line is different from a paragraph. Paragraphs are
|
1300
|
+
separated by newlines or other paragraph separator characters.
|
1301
|
+
Display lines are created by line-wrapping a paragraph. If
|
1302
|
+
wrapping is turned off, display lines and paragraphs will be the
|
1303
|
+
same. Display lines are divided differently for each view, since
|
1304
|
+
they depend on the view's width; paragraphs are the same in all
|
1305
|
+
views, since they depend on the contents of the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
|
1306
|
+
</p>
|
1307
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1308
|
+
<colgroup>
|
1309
|
+
<col align="left" valign="top">
|
1310
|
+
<col>
|
1311
|
+
</colgroup>
|
1312
|
+
<tbody>
|
1313
|
+
<tr>
|
1314
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1315
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1316
|
+
</td>
|
1317
|
+
</tr>
|
1318
|
+
<tr>
|
1319
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1320
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
|
1321
|
+
</td>
|
1322
|
+
</tr>
|
1323
|
+
<tr>
|
1324
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1325
|
+
<td>
|
1326
|
+
<code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> was moved and is not on the end iterator</td>
|
1327
|
+
</tr>
|
1328
|
+
</tbody>
|
1329
|
+
</table></div>
|
1330
|
+
</div>
|
1331
|
+
<hr>
|
1332
|
+
<div class="refsect2">
|
1333
|
+
<a name="gtk-text-view-backward-display-line"></a><h3>gtk_text_view_backward_display_line ()</h3>
|
1334
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_backward_display_line (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1335
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
|
1336
|
+
<p>
|
1337
|
+
Moves the given <em class="parameter"><code>iter</code></em> backward by one display (wrapped) line.
|
1338
|
+
A display line is different from a paragraph. Paragraphs are
|
1339
|
+
separated by newlines or other paragraph separator characters.
|
1340
|
+
Display lines are created by line-wrapping a paragraph. If
|
1341
|
+
wrapping is turned off, display lines and paragraphs will be the
|
1342
|
+
same. Display lines are divided differently for each view, since
|
1343
|
+
they depend on the view's width; paragraphs are the same in all
|
1344
|
+
views, since they depend on the contents of the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
|
1345
|
+
</p>
|
1346
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1347
|
+
<colgroup>
|
1348
|
+
<col align="left" valign="top">
|
1349
|
+
<col>
|
1350
|
+
</colgroup>
|
1351
|
+
<tbody>
|
1352
|
+
<tr>
|
1353
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1354
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1355
|
+
</td>
|
1356
|
+
</tr>
|
1357
|
+
<tr>
|
1358
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1359
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
|
1360
|
+
</td>
|
1361
|
+
</tr>
|
1362
|
+
<tr>
|
1363
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1364
|
+
<td>
|
1365
|
+
<code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> was moved and is not on the end iterator</td>
|
1366
|
+
</tr>
|
1367
|
+
</tbody>
|
1368
|
+
</table></div>
|
1369
|
+
</div>
|
1370
|
+
<hr>
|
1371
|
+
<div class="refsect2">
|
1372
|
+
<a name="gtk-text-view-forward-display-line-end"></a><h3>gtk_text_view_forward_display_line_end ()</h3>
|
1373
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_forward_display_line_end
|
1374
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1375
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
|
1376
|
+
<p>
|
1377
|
+
Moves the given <em class="parameter"><code>iter</code></em> forward to the next display line end.
|
1378
|
+
A display line is different from a paragraph. Paragraphs are
|
1379
|
+
separated by newlines or other paragraph separator characters.
|
1380
|
+
Display lines are created by line-wrapping a paragraph. If
|
1381
|
+
wrapping is turned off, display lines and paragraphs will be the
|
1382
|
+
same. Display lines are divided differently for each view, since
|
1383
|
+
they depend on the view's width; paragraphs are the same in all
|
1384
|
+
views, since they depend on the contents of the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
|
1385
|
+
</p>
|
1386
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1387
|
+
<colgroup>
|
1388
|
+
<col align="left" valign="top">
|
1389
|
+
<col>
|
1390
|
+
</colgroup>
|
1391
|
+
<tbody>
|
1392
|
+
<tr>
|
1393
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1394
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1395
|
+
</td>
|
1396
|
+
</tr>
|
1397
|
+
<tr>
|
1398
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1399
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
|
1400
|
+
</td>
|
1401
|
+
</tr>
|
1402
|
+
<tr>
|
1403
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1404
|
+
<td>
|
1405
|
+
<code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> was moved and is not on the end iterator</td>
|
1406
|
+
</tr>
|
1407
|
+
</tbody>
|
1408
|
+
</table></div>
|
1409
|
+
</div>
|
1410
|
+
<hr>
|
1411
|
+
<div class="refsect2">
|
1412
|
+
<a name="gtk-text-view-backward-display-line-start"></a><h3>gtk_text_view_backward_display_line_start ()</h3>
|
1413
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_backward_display_line_start
|
1414
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1415
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
|
1416
|
+
<p>
|
1417
|
+
Moves the given <em class="parameter"><code>iter</code></em> backward to the next display line start.
|
1418
|
+
A display line is different from a paragraph. Paragraphs are
|
1419
|
+
separated by newlines or other paragraph separator characters.
|
1420
|
+
Display lines are created by line-wrapping a paragraph. If
|
1421
|
+
wrapping is turned off, display lines and paragraphs will be the
|
1422
|
+
same. Display lines are divided differently for each view, since
|
1423
|
+
they depend on the view's width; paragraphs are the same in all
|
1424
|
+
views, since they depend on the contents of the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
|
1425
|
+
</p>
|
1426
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1427
|
+
<colgroup>
|
1428
|
+
<col align="left" valign="top">
|
1429
|
+
<col>
|
1430
|
+
</colgroup>
|
1431
|
+
<tbody>
|
1432
|
+
<tr>
|
1433
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1434
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1435
|
+
</td>
|
1436
|
+
</tr>
|
1437
|
+
<tr>
|
1438
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1439
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
|
1440
|
+
</td>
|
1441
|
+
</tr>
|
1442
|
+
<tr>
|
1443
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1444
|
+
<td>
|
1445
|
+
<code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> was moved and is not on the end iterator</td>
|
1446
|
+
</tr>
|
1447
|
+
</tbody>
|
1448
|
+
</table></div>
|
1449
|
+
</div>
|
1450
|
+
<hr>
|
1451
|
+
<div class="refsect2">
|
1452
|
+
<a name="gtk-text-view-starts-display-line"></a><h3>gtk_text_view_starts_display_line ()</h3>
|
1453
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_starts_display_line (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1454
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
|
1455
|
+
<p>
|
1456
|
+
Determines whether <em class="parameter"><code>iter</code></em> is at the start of a display line.
|
1457
|
+
See <a class="link" href="GtkTextView.html#gtk-text-view-forward-display-line" title="gtk_text_view_forward_display_line ()"><code class="function">gtk_text_view_forward_display_line()</code></a> for an explanation of
|
1458
|
+
display lines vs. paragraphs.
|
1459
|
+
</p>
|
1460
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1461
|
+
<colgroup>
|
1462
|
+
<col align="left" valign="top">
|
1463
|
+
<col>
|
1464
|
+
</colgroup>
|
1465
|
+
<tbody>
|
1466
|
+
<tr>
|
1467
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1468
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1469
|
+
</td>
|
1470
|
+
</tr>
|
1471
|
+
<tr>
|
1472
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1473
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
|
1474
|
+
</td>
|
1475
|
+
</tr>
|
1476
|
+
<tr>
|
1477
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1478
|
+
<td>
|
1479
|
+
<code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> begins a wrapped line</td>
|
1480
|
+
</tr>
|
1481
|
+
</tbody>
|
1482
|
+
</table></div>
|
1483
|
+
</div>
|
1484
|
+
<hr>
|
1485
|
+
<div class="refsect2">
|
1486
|
+
<a name="gtk-text-view-move-visually"></a><h3>gtk_text_view_move_visually ()</h3>
|
1487
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_move_visually (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1488
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
1489
|
+
<em class="parameter"><code><span class="type">gint</span> count</code></em>);</pre>
|
1490
|
+
<p>
|
1491
|
+
Move the iterator a given number of characters visually, treating
|
1492
|
+
it as the strong cursor position. If <em class="parameter"><code>count</code></em> is positive, then the
|
1493
|
+
new strong cursor position will be <em class="parameter"><code>count</code></em> positions to the right of
|
1494
|
+
the old cursor position. If <em class="parameter"><code>count</code></em> is negative then the new strong
|
1495
|
+
cursor position will be <em class="parameter"><code>count</code></em> positions to the left of the old
|
1496
|
+
cursor position.
|
1497
|
+
</p>
|
1498
|
+
<p>
|
1499
|
+
In the presence of bi-directional text, the correspondence
|
1500
|
+
between logical and visual order will depend on the direction
|
1501
|
+
of the current run, and there may be jumps when the cursor
|
1502
|
+
is moved off of the end of a run.
|
1503
|
+
</p>
|
1504
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1505
|
+
<colgroup>
|
1506
|
+
<col align="left" valign="top">
|
1507
|
+
<col>
|
1508
|
+
</colgroup>
|
1509
|
+
<tbody>
|
1510
|
+
<tr>
|
1511
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1512
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1513
|
+
</td>
|
1514
|
+
</tr>
|
1515
|
+
<tr>
|
1516
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1517
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
|
1518
|
+
</td>
|
1519
|
+
</tr>
|
1520
|
+
<tr>
|
1521
|
+
<td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
|
1522
|
+
<td>number of characters to move (negative moves left,
|
1523
|
+
positive moves right)</td>
|
1524
|
+
</tr>
|
1525
|
+
<tr>
|
1526
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1527
|
+
<td>
|
1528
|
+
<code class="literal">TRUE</code> if <em class="parameter"><code>iter</code></em> moved and is not on the end iterator</td>
|
1529
|
+
</tr>
|
1530
|
+
</tbody>
|
1531
|
+
</table></div>
|
1532
|
+
</div>
|
1533
|
+
<hr>
|
1534
|
+
<div class="refsect2">
|
1535
|
+
<a name="gtk-text-view-add-child-at-anchor"></a><h3>gtk_text_view_add_child_at_anchor ()</h3>
|
1536
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_add_child_at_anchor (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1537
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
1538
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);</pre>
|
1539
|
+
<p>
|
1540
|
+
Adds a child widget in the text buffer, at the given <em class="parameter"><code>anchor</code></em>.
|
1541
|
+
</p>
|
1542
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1543
|
+
<colgroup>
|
1544
|
+
<col align="left" valign="top">
|
1545
|
+
<col>
|
1546
|
+
</colgroup>
|
1547
|
+
<tbody>
|
1548
|
+
<tr>
|
1549
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1550
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1551
|
+
</td>
|
1552
|
+
</tr>
|
1553
|
+
<tr>
|
1554
|
+
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
1555
|
+
<td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>
|
1556
|
+
</td>
|
1557
|
+
</tr>
|
1558
|
+
<tr>
|
1559
|
+
<td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
|
1560
|
+
<td>a <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> in the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> for <em class="parameter"><code>text_view</code></em>
|
1561
|
+
</td>
|
1562
|
+
</tr>
|
1563
|
+
</tbody>
|
1564
|
+
</table></div>
|
1565
|
+
</div>
|
1566
|
+
<hr>
|
1567
|
+
<div class="refsect2">
|
1568
|
+
<a name="GtkTextChildAnchor-struct"></a><h3>struct GtkTextChildAnchor</h3>
|
1569
|
+
<pre class="programlisting">struct GtkTextChildAnchor;</pre>
|
1570
|
+
<p>
|
1571
|
+
A <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> is a spot in the buffer where child widgets can
|
1572
|
+
be "anchored" (inserted inline, as if they were characters). The anchor
|
1573
|
+
can have multiple widgets anchored, to allow for multiple views.
|
1574
|
+
</p>
|
1575
|
+
</div>
|
1576
|
+
<hr>
|
1577
|
+
<div class="refsect2">
|
1578
|
+
<a name="gtk-text-child-anchor-new"></a><h3>gtk_text_child_anchor_new ()</h3>
|
1579
|
+
<pre class="programlisting"><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="returnvalue">GtkTextChildAnchor</span></a> * gtk_text_child_anchor_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1580
|
+
<p>
|
1581
|
+
Creates a new <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a>. Usually you would then insert
|
1582
|
+
it into a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> with <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-child-anchor" title="gtk_text_buffer_insert_child_anchor ()"><code class="function">gtk_text_buffer_insert_child_anchor()</code></a>.
|
1583
|
+
To perform the creation and insertion in one step, use the
|
1584
|
+
convenience function <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-child-anchor" title="gtk_text_buffer_create_child_anchor ()"><code class="function">gtk_text_buffer_create_child_anchor()</code></a>.
|
1585
|
+
</p>
|
1586
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1587
|
+
<colgroup>
|
1588
|
+
<col align="left" valign="top">
|
1589
|
+
<col>
|
1590
|
+
</colgroup>
|
1591
|
+
<tbody><tr>
|
1592
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1593
|
+
<td>a new <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a>
|
1594
|
+
</td>
|
1595
|
+
</tr></tbody>
|
1596
|
+
</table></div>
|
1597
|
+
</div>
|
1598
|
+
<hr>
|
1599
|
+
<div class="refsect2">
|
1600
|
+
<a name="gtk-text-child-anchor-get-widgets"></a><h3>gtk_text_child_anchor_get_widgets ()</h3>
|
1601
|
+
<pre class="programlisting"><span class="returnvalue">GList</span> * gtk_text_child_anchor_get_widgets (<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);</pre>
|
1602
|
+
<p>
|
1603
|
+
Gets a list of all widgets anchored at this child anchor.
|
1604
|
+
The returned list should be freed with <code class="function">g_list_free()</code>.
|
1605
|
+
</p>
|
1606
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1607
|
+
<colgroup>
|
1608
|
+
<col align="left" valign="top">
|
1609
|
+
<col>
|
1610
|
+
</colgroup>
|
1611
|
+
<tbody>
|
1612
|
+
<tr>
|
1613
|
+
<td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
|
1614
|
+
<td>a <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a>
|
1615
|
+
</td>
|
1616
|
+
</tr>
|
1617
|
+
<tr>
|
1618
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1619
|
+
<td>list of widgets anchored at <em class="parameter"><code>anchor</code></em>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkWidget][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
|
1620
|
+
</td>
|
1621
|
+
</tr>
|
1622
|
+
</tbody>
|
1623
|
+
</table></div>
|
1624
|
+
</div>
|
1625
|
+
<hr>
|
1626
|
+
<div class="refsect2">
|
1627
|
+
<a name="gtk-text-child-anchor-get-deleted"></a><h3>gtk_text_child_anchor_get_deleted ()</h3>
|
1628
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_child_anchor_get_deleted (<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);</pre>
|
1629
|
+
<p>
|
1630
|
+
Determines whether a child anchor has been deleted from
|
1631
|
+
the buffer. Keep in mind that the child anchor will be
|
1632
|
+
unreferenced when removed from the buffer, so you need to
|
1633
|
+
hold your own reference (with <code class="function">g_object_ref()</code>) if you plan
|
1634
|
+
to use this function — otherwise all deleted child anchors
|
1635
|
+
will also be finalized.
|
1636
|
+
</p>
|
1637
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1638
|
+
<colgroup>
|
1639
|
+
<col align="left" valign="top">
|
1640
|
+
<col>
|
1641
|
+
</colgroup>
|
1642
|
+
<tbody>
|
1643
|
+
<tr>
|
1644
|
+
<td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
|
1645
|
+
<td>a <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a>
|
1646
|
+
</td>
|
1647
|
+
</tr>
|
1648
|
+
<tr>
|
1649
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1650
|
+
<td>
|
1651
|
+
<code class="literal">TRUE</code> if the child anchor has been deleted from its buffer</td>
|
1652
|
+
</tr>
|
1653
|
+
</tbody>
|
1654
|
+
</table></div>
|
1655
|
+
</div>
|
1656
|
+
<hr>
|
1657
|
+
<div class="refsect2">
|
1658
|
+
<a name="gtk-text-view-add-child-in-window"></a><h3>gtk_text_view_add_child_in_window ()</h3>
|
1659
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_add_child_in_window (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1660
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
1661
|
+
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextWindowType" title="enum GtkTextWindowType"><span class="type">GtkTextWindowType</span></a> which_window</code></em>,
|
1662
|
+
<em class="parameter"><code><span class="type">gint</span> xpos</code></em>,
|
1663
|
+
<em class="parameter"><code><span class="type">gint</span> ypos</code></em>);</pre>
|
1664
|
+
<p>
|
1665
|
+
Adds a child at fixed coordinates in one of the text widget's
|
1666
|
+
windows.
|
1667
|
+
</p>
|
1668
|
+
<p>
|
1669
|
+
The window must have nonzero size (see
|
1670
|
+
<a class="link" href="GtkTextView.html#gtk-text-view-set-border-window-size" title="gtk_text_view_set_border_window_size ()"><code class="function">gtk_text_view_set_border_window_size()</code></a>). Note that the child
|
1671
|
+
coordinates are given relative to the <a href="../gdk3/gdk3-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> in question, and
|
1672
|
+
that these coordinates have no sane relationship to scrolling. When
|
1673
|
+
placing a child in <a class="link" href="GtkTextView.html#GTK-TEXT-WINDOW-WIDGET:CAPS"><span class="type">GTK_TEXT_WINDOW_WIDGET</span></a>, scrolling is
|
1674
|
+
irrelevant, the child floats above all scrollable areas. But when
|
1675
|
+
placing a child in one of the scrollable windows (border windows or
|
1676
|
+
text window), you'll need to compute the child's correct position
|
1677
|
+
in buffer coordinates any time scrolling occurs or buffer changes
|
1678
|
+
occur, and then call <a class="link" href="GtkTextView.html#gtk-text-view-move-child" title="gtk_text_view_move_child ()"><code class="function">gtk_text_view_move_child()</code></a> to update the
|
1679
|
+
child's position.
|
1680
|
+
</p>
|
1681
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1682
|
+
<colgroup>
|
1683
|
+
<col align="left" valign="top">
|
1684
|
+
<col>
|
1685
|
+
</colgroup>
|
1686
|
+
<tbody>
|
1687
|
+
<tr>
|
1688
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1689
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1690
|
+
</td>
|
1691
|
+
</tr>
|
1692
|
+
<tr>
|
1693
|
+
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
1694
|
+
<td>a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>
|
1695
|
+
</td>
|
1696
|
+
</tr>
|
1697
|
+
<tr>
|
1698
|
+
<td><p><span class="term"><em class="parameter"><code>which_window</code></em> :</span></p></td>
|
1699
|
+
<td>which window the child should appear in</td>
|
1700
|
+
</tr>
|
1701
|
+
<tr>
|
1702
|
+
<td><p><span class="term"><em class="parameter"><code>xpos</code></em> :</span></p></td>
|
1703
|
+
<td>X position of child in window coordinates</td>
|
1704
|
+
</tr>
|
1705
|
+
<tr>
|
1706
|
+
<td><p><span class="term"><em class="parameter"><code>ypos</code></em> :</span></p></td>
|
1707
|
+
<td>Y position of child in window coordinates</td>
|
1708
|
+
</tr>
|
1709
|
+
</tbody>
|
1710
|
+
</table></div>
|
1711
|
+
</div>
|
1712
|
+
<hr>
|
1713
|
+
<div class="refsect2">
|
1714
|
+
<a name="gtk-text-view-move-child"></a><h3>gtk_text_view_move_child ()</h3>
|
1715
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_move_child (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1716
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
|
1717
|
+
<em class="parameter"><code><span class="type">gint</span> xpos</code></em>,
|
1718
|
+
<em class="parameter"><code><span class="type">gint</span> ypos</code></em>);</pre>
|
1719
|
+
<p>
|
1720
|
+
Updates the position of a child, as for <a class="link" href="GtkTextView.html#gtk-text-view-add-child-in-window" title="gtk_text_view_add_child_in_window ()"><code class="function">gtk_text_view_add_child_in_window()</code></a>.
|
1721
|
+
</p>
|
1722
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1723
|
+
<colgroup>
|
1724
|
+
<col align="left" valign="top">
|
1725
|
+
<col>
|
1726
|
+
</colgroup>
|
1727
|
+
<tbody>
|
1728
|
+
<tr>
|
1729
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1730
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1731
|
+
</td>
|
1732
|
+
</tr>
|
1733
|
+
<tr>
|
1734
|
+
<td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
|
1735
|
+
<td>child widget already added to the text view</td>
|
1736
|
+
</tr>
|
1737
|
+
<tr>
|
1738
|
+
<td><p><span class="term"><em class="parameter"><code>xpos</code></em> :</span></p></td>
|
1739
|
+
<td>new X position in window coordinates</td>
|
1740
|
+
</tr>
|
1741
|
+
<tr>
|
1742
|
+
<td><p><span class="term"><em class="parameter"><code>ypos</code></em> :</span></p></td>
|
1743
|
+
<td>new Y position in window coordinates</td>
|
1744
|
+
</tr>
|
1745
|
+
</tbody>
|
1746
|
+
</table></div>
|
1747
|
+
</div>
|
1748
|
+
<hr>
|
1749
|
+
<div class="refsect2">
|
1750
|
+
<a name="gtk-text-view-set-wrap-mode"></a><h3>gtk_text_view_set_wrap_mode ()</h3>
|
1751
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_wrap_mode (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1752
|
+
<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a> wrap_mode</code></em>);</pre>
|
1753
|
+
<p>
|
1754
|
+
Sets the line wrapping for the view.
|
1755
|
+
</p>
|
1756
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1757
|
+
<colgroup>
|
1758
|
+
<col align="left" valign="top">
|
1759
|
+
<col>
|
1760
|
+
</colgroup>
|
1761
|
+
<tbody>
|
1762
|
+
<tr>
|
1763
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1764
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1765
|
+
</td>
|
1766
|
+
</tr>
|
1767
|
+
<tr>
|
1768
|
+
<td><p><span class="term"><em class="parameter"><code>wrap_mode</code></em> :</span></p></td>
|
1769
|
+
<td>a <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a>
|
1770
|
+
</td>
|
1771
|
+
</tr>
|
1772
|
+
</tbody>
|
1773
|
+
</table></div>
|
1774
|
+
</div>
|
1775
|
+
<hr>
|
1776
|
+
<div class="refsect2">
|
1777
|
+
<a name="gtk-text-view-get-wrap-mode"></a><h3>gtk_text_view_get_wrap_mode ()</h3>
|
1778
|
+
<pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="returnvalue">GtkWrapMode</span></a> gtk_text_view_get_wrap_mode (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
1779
|
+
<p>
|
1780
|
+
Gets the line wrapping for the view.
|
1781
|
+
</p>
|
1782
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1783
|
+
<colgroup>
|
1784
|
+
<col align="left" valign="top">
|
1785
|
+
<col>
|
1786
|
+
</colgroup>
|
1787
|
+
<tbody>
|
1788
|
+
<tr>
|
1789
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1790
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1791
|
+
</td>
|
1792
|
+
</tr>
|
1793
|
+
<tr>
|
1794
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1795
|
+
<td>the line wrap setting</td>
|
1796
|
+
</tr>
|
1797
|
+
</tbody>
|
1798
|
+
</table></div>
|
1799
|
+
</div>
|
1800
|
+
<hr>
|
1801
|
+
<div class="refsect2">
|
1802
|
+
<a name="gtk-text-view-set-editable"></a><h3>gtk_text_view_set_editable ()</h3>
|
1803
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_editable (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1804
|
+
<em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);</pre>
|
1805
|
+
<p>
|
1806
|
+
Sets the default editability of the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>. You can override
|
1807
|
+
this default setting with tags in the buffer, using the "editable"
|
1808
|
+
attribute of tags.
|
1809
|
+
</p>
|
1810
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1811
|
+
<colgroup>
|
1812
|
+
<col align="left" valign="top">
|
1813
|
+
<col>
|
1814
|
+
</colgroup>
|
1815
|
+
<tbody>
|
1816
|
+
<tr>
|
1817
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1818
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1819
|
+
</td>
|
1820
|
+
</tr>
|
1821
|
+
<tr>
|
1822
|
+
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
1823
|
+
<td>whether it's editable</td>
|
1824
|
+
</tr>
|
1825
|
+
</tbody>
|
1826
|
+
</table></div>
|
1827
|
+
</div>
|
1828
|
+
<hr>
|
1829
|
+
<div class="refsect2">
|
1830
|
+
<a name="gtk-text-view-get-editable"></a><h3>gtk_text_view_get_editable ()</h3>
|
1831
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_get_editable (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
1832
|
+
<p>
|
1833
|
+
Returns the default editability of the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>. Tags in the
|
1834
|
+
buffer may override this setting for some ranges of text.
|
1835
|
+
</p>
|
1836
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1837
|
+
<colgroup>
|
1838
|
+
<col align="left" valign="top">
|
1839
|
+
<col>
|
1840
|
+
</colgroup>
|
1841
|
+
<tbody>
|
1842
|
+
<tr>
|
1843
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1844
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1845
|
+
</td>
|
1846
|
+
</tr>
|
1847
|
+
<tr>
|
1848
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1849
|
+
<td>whether text is editable by default</td>
|
1850
|
+
</tr>
|
1851
|
+
</tbody>
|
1852
|
+
</table></div>
|
1853
|
+
</div>
|
1854
|
+
<hr>
|
1855
|
+
<div class="refsect2">
|
1856
|
+
<a name="gtk-text-view-set-cursor-visible"></a><h3>gtk_text_view_set_cursor_visible ()</h3>
|
1857
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_cursor_visible (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1858
|
+
<em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);</pre>
|
1859
|
+
<p>
|
1860
|
+
Toggles whether the insertion point is displayed. A buffer with no editable
|
1861
|
+
text probably shouldn't have a visible cursor, so you may want to turn
|
1862
|
+
the cursor off.
|
1863
|
+
</p>
|
1864
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1865
|
+
<colgroup>
|
1866
|
+
<col align="left" valign="top">
|
1867
|
+
<col>
|
1868
|
+
</colgroup>
|
1869
|
+
<tbody>
|
1870
|
+
<tr>
|
1871
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1872
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1873
|
+
</td>
|
1874
|
+
</tr>
|
1875
|
+
<tr>
|
1876
|
+
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
1877
|
+
<td>whether to show the insertion cursor</td>
|
1878
|
+
</tr>
|
1879
|
+
</tbody>
|
1880
|
+
</table></div>
|
1881
|
+
</div>
|
1882
|
+
<hr>
|
1883
|
+
<div class="refsect2">
|
1884
|
+
<a name="gtk-text-view-get-cursor-visible"></a><h3>gtk_text_view_get_cursor_visible ()</h3>
|
1885
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_get_cursor_visible (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
1886
|
+
<p>
|
1887
|
+
Find out whether the cursor is being displayed.
|
1888
|
+
</p>
|
1889
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1890
|
+
<colgroup>
|
1891
|
+
<col align="left" valign="top">
|
1892
|
+
<col>
|
1893
|
+
</colgroup>
|
1894
|
+
<tbody>
|
1895
|
+
<tr>
|
1896
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1897
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1898
|
+
</td>
|
1899
|
+
</tr>
|
1900
|
+
<tr>
|
1901
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1902
|
+
<td>whether the insertion mark is visible</td>
|
1903
|
+
</tr>
|
1904
|
+
</tbody>
|
1905
|
+
</table></div>
|
1906
|
+
</div>
|
1907
|
+
<hr>
|
1908
|
+
<div class="refsect2">
|
1909
|
+
<a name="gtk-text-view-set-overwrite"></a><h3>gtk_text_view_set_overwrite ()</h3>
|
1910
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_overwrite (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1911
|
+
<em class="parameter"><code><span class="type">gboolean</span> overwrite</code></em>);</pre>
|
1912
|
+
<p>
|
1913
|
+
Changes the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> overwrite mode.
|
1914
|
+
</p>
|
1915
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1916
|
+
<colgroup>
|
1917
|
+
<col align="left" valign="top">
|
1918
|
+
<col>
|
1919
|
+
</colgroup>
|
1920
|
+
<tbody>
|
1921
|
+
<tr>
|
1922
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1923
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1924
|
+
</td>
|
1925
|
+
</tr>
|
1926
|
+
<tr>
|
1927
|
+
<td><p><span class="term"><em class="parameter"><code>overwrite</code></em> :</span></p></td>
|
1928
|
+
<td>
|
1929
|
+
<code class="literal">TRUE</code> to turn on overwrite mode, <code class="literal">FALSE</code> to turn it off</td>
|
1930
|
+
</tr>
|
1931
|
+
</tbody>
|
1932
|
+
</table></div>
|
1933
|
+
<p class="since">Since 2.4</p>
|
1934
|
+
</div>
|
1935
|
+
<hr>
|
1936
|
+
<div class="refsect2">
|
1937
|
+
<a name="gtk-text-view-get-overwrite"></a><h3>gtk_text_view_get_overwrite ()</h3>
|
1938
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_get_overwrite (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
1939
|
+
<p>
|
1940
|
+
Returns whether the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> is in overwrite mode or not.
|
1941
|
+
</p>
|
1942
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1943
|
+
<colgroup>
|
1944
|
+
<col align="left" valign="top">
|
1945
|
+
<col>
|
1946
|
+
</colgroup>
|
1947
|
+
<tbody>
|
1948
|
+
<tr>
|
1949
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1950
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1951
|
+
</td>
|
1952
|
+
</tr>
|
1953
|
+
<tr>
|
1954
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1955
|
+
<td>whether <em class="parameter"><code>text_view</code></em> is in overwrite mode or not.</td>
|
1956
|
+
</tr>
|
1957
|
+
</tbody>
|
1958
|
+
</table></div>
|
1959
|
+
<p class="since">Since 2.4</p>
|
1960
|
+
</div>
|
1961
|
+
<hr>
|
1962
|
+
<div class="refsect2">
|
1963
|
+
<a name="gtk-text-view-set-pixels-above-lines"></a><h3>gtk_text_view_set_pixels_above_lines ()</h3>
|
1964
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_pixels_above_lines
|
1965
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
1966
|
+
<em class="parameter"><code><span class="type">gint</span> pixels_above_lines</code></em>);</pre>
|
1967
|
+
<p>
|
1968
|
+
Sets the default number of blank pixels above paragraphs in <em class="parameter"><code>text_view</code></em>.
|
1969
|
+
Tags in the buffer for <em class="parameter"><code>text_view</code></em> may override the defaults.
|
1970
|
+
</p>
|
1971
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1972
|
+
<colgroup>
|
1973
|
+
<col align="left" valign="top">
|
1974
|
+
<col>
|
1975
|
+
</colgroup>
|
1976
|
+
<tbody>
|
1977
|
+
<tr>
|
1978
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
1979
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
1980
|
+
</td>
|
1981
|
+
</tr>
|
1982
|
+
<tr>
|
1983
|
+
<td><p><span class="term"><em class="parameter"><code>pixels_above_lines</code></em> :</span></p></td>
|
1984
|
+
<td>pixels above paragraphs</td>
|
1985
|
+
</tr>
|
1986
|
+
</tbody>
|
1987
|
+
</table></div>
|
1988
|
+
</div>
|
1989
|
+
<hr>
|
1990
|
+
<div class="refsect2">
|
1991
|
+
<a name="gtk-text-view-get-pixels-above-lines"></a><h3>gtk_text_view_get_pixels_above_lines ()</h3>
|
1992
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_view_get_pixels_above_lines
|
1993
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
1994
|
+
<p>
|
1995
|
+
Gets the default number of pixels to put above paragraphs.
|
1996
|
+
</p>
|
1997
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1998
|
+
<colgroup>
|
1999
|
+
<col align="left" valign="top">
|
2000
|
+
<col>
|
2001
|
+
</colgroup>
|
2002
|
+
<tbody>
|
2003
|
+
<tr>
|
2004
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2005
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2006
|
+
</td>
|
2007
|
+
</tr>
|
2008
|
+
<tr>
|
2009
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2010
|
+
<td>default number of pixels above paragraphs</td>
|
2011
|
+
</tr>
|
2012
|
+
</tbody>
|
2013
|
+
</table></div>
|
2014
|
+
</div>
|
2015
|
+
<hr>
|
2016
|
+
<div class="refsect2">
|
2017
|
+
<a name="gtk-text-view-set-pixels-below-lines"></a><h3>gtk_text_view_set_pixels_below_lines ()</h3>
|
2018
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_pixels_below_lines
|
2019
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
2020
|
+
<em class="parameter"><code><span class="type">gint</span> pixels_below_lines</code></em>);</pre>
|
2021
|
+
<p>
|
2022
|
+
Sets the default number of pixels of blank space
|
2023
|
+
to put below paragraphs in <em class="parameter"><code>text_view</code></em>. May be overridden
|
2024
|
+
by tags applied to <em class="parameter"><code>text_view</code></em>'s buffer.
|
2025
|
+
</p>
|
2026
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2027
|
+
<colgroup>
|
2028
|
+
<col align="left" valign="top">
|
2029
|
+
<col>
|
2030
|
+
</colgroup>
|
2031
|
+
<tbody>
|
2032
|
+
<tr>
|
2033
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2034
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2035
|
+
</td>
|
2036
|
+
</tr>
|
2037
|
+
<tr>
|
2038
|
+
<td><p><span class="term"><em class="parameter"><code>pixels_below_lines</code></em> :</span></p></td>
|
2039
|
+
<td>pixels below paragraphs</td>
|
2040
|
+
</tr>
|
2041
|
+
</tbody>
|
2042
|
+
</table></div>
|
2043
|
+
</div>
|
2044
|
+
<hr>
|
2045
|
+
<div class="refsect2">
|
2046
|
+
<a name="gtk-text-view-get-pixels-below-lines"></a><h3>gtk_text_view_get_pixels_below_lines ()</h3>
|
2047
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_view_get_pixels_below_lines
|
2048
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
2049
|
+
<p>
|
2050
|
+
Gets the value set by <a class="link" href="GtkTextView.html#gtk-text-view-set-pixels-below-lines" title="gtk_text_view_set_pixels_below_lines ()"><code class="function">gtk_text_view_set_pixels_below_lines()</code></a>.
|
2051
|
+
</p>
|
2052
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2053
|
+
<colgroup>
|
2054
|
+
<col align="left" valign="top">
|
2055
|
+
<col>
|
2056
|
+
</colgroup>
|
2057
|
+
<tbody>
|
2058
|
+
<tr>
|
2059
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2060
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2061
|
+
</td>
|
2062
|
+
</tr>
|
2063
|
+
<tr>
|
2064
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2065
|
+
<td>default number of blank pixels below paragraphs</td>
|
2066
|
+
</tr>
|
2067
|
+
</tbody>
|
2068
|
+
</table></div>
|
2069
|
+
</div>
|
2070
|
+
<hr>
|
2071
|
+
<div class="refsect2">
|
2072
|
+
<a name="gtk-text-view-set-pixels-inside-wrap"></a><h3>gtk_text_view_set_pixels_inside_wrap ()</h3>
|
2073
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_pixels_inside_wrap
|
2074
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
2075
|
+
<em class="parameter"><code><span class="type">gint</span> pixels_inside_wrap</code></em>);</pre>
|
2076
|
+
<p>
|
2077
|
+
Sets the default number of pixels of blank space to leave between
|
2078
|
+
display/wrapped lines within a paragraph. May be overridden by
|
2079
|
+
tags in <em class="parameter"><code>text_view</code></em>'s buffer.
|
2080
|
+
</p>
|
2081
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2082
|
+
<colgroup>
|
2083
|
+
<col align="left" valign="top">
|
2084
|
+
<col>
|
2085
|
+
</colgroup>
|
2086
|
+
<tbody>
|
2087
|
+
<tr>
|
2088
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2089
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2090
|
+
</td>
|
2091
|
+
</tr>
|
2092
|
+
<tr>
|
2093
|
+
<td><p><span class="term"><em class="parameter"><code>pixels_inside_wrap</code></em> :</span></p></td>
|
2094
|
+
<td>default number of pixels between wrapped lines</td>
|
2095
|
+
</tr>
|
2096
|
+
</tbody>
|
2097
|
+
</table></div>
|
2098
|
+
</div>
|
2099
|
+
<hr>
|
2100
|
+
<div class="refsect2">
|
2101
|
+
<a name="gtk-text-view-get-pixels-inside-wrap"></a><h3>gtk_text_view_get_pixels_inside_wrap ()</h3>
|
2102
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_view_get_pixels_inside_wrap
|
2103
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
2104
|
+
<p>
|
2105
|
+
Gets the value set by <a class="link" href="GtkTextView.html#gtk-text-view-set-pixels-inside-wrap" title="gtk_text_view_set_pixels_inside_wrap ()"><code class="function">gtk_text_view_set_pixels_inside_wrap()</code></a>.
|
2106
|
+
</p>
|
2107
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2108
|
+
<colgroup>
|
2109
|
+
<col align="left" valign="top">
|
2110
|
+
<col>
|
2111
|
+
</colgroup>
|
2112
|
+
<tbody>
|
2113
|
+
<tr>
|
2114
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2115
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2116
|
+
</td>
|
2117
|
+
</tr>
|
2118
|
+
<tr>
|
2119
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2120
|
+
<td>default number of pixels of blank space between wrapped lines</td>
|
2121
|
+
</tr>
|
2122
|
+
</tbody>
|
2123
|
+
</table></div>
|
2124
|
+
</div>
|
2125
|
+
<hr>
|
2126
|
+
<div class="refsect2">
|
2127
|
+
<a name="gtk-text-view-set-justification"></a><h3>gtk_text_view_set_justification ()</h3>
|
2128
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_justification (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
2129
|
+
<em class="parameter"><code><a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> justification</code></em>);</pre>
|
2130
|
+
<p>
|
2131
|
+
Sets the default justification of text in <em class="parameter"><code>text_view</code></em>.
|
2132
|
+
Tags in the view's buffer may override the default.
|
2133
|
+
</p>
|
2134
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2135
|
+
<colgroup>
|
2136
|
+
<col align="left" valign="top">
|
2137
|
+
<col>
|
2138
|
+
</colgroup>
|
2139
|
+
<tbody>
|
2140
|
+
<tr>
|
2141
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2142
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2143
|
+
</td>
|
2144
|
+
</tr>
|
2145
|
+
<tr>
|
2146
|
+
<td><p><span class="term"><em class="parameter"><code>justification</code></em> :</span></p></td>
|
2147
|
+
<td>justification</td>
|
2148
|
+
</tr>
|
2149
|
+
</tbody>
|
2150
|
+
</table></div>
|
2151
|
+
</div>
|
2152
|
+
<hr>
|
2153
|
+
<div class="refsect2">
|
2154
|
+
<a name="gtk-text-view-get-justification"></a><h3>gtk_text_view_get_justification ()</h3>
|
2155
|
+
<pre class="programlisting"><a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="returnvalue">GtkJustification</span></a> gtk_text_view_get_justification (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
2156
|
+
<p>
|
2157
|
+
Gets the default justification of paragraphs in <em class="parameter"><code>text_view</code></em>.
|
2158
|
+
Tags in the buffer may override the default.
|
2159
|
+
</p>
|
2160
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2161
|
+
<colgroup>
|
2162
|
+
<col align="left" valign="top">
|
2163
|
+
<col>
|
2164
|
+
</colgroup>
|
2165
|
+
<tbody>
|
2166
|
+
<tr>
|
2167
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2168
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2169
|
+
</td>
|
2170
|
+
</tr>
|
2171
|
+
<tr>
|
2172
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2173
|
+
<td>default justification</td>
|
2174
|
+
</tr>
|
2175
|
+
</tbody>
|
2176
|
+
</table></div>
|
2177
|
+
</div>
|
2178
|
+
<hr>
|
2179
|
+
<div class="refsect2">
|
2180
|
+
<a name="gtk-text-view-set-left-margin"></a><h3>gtk_text_view_set_left_margin ()</h3>
|
2181
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_left_margin (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
2182
|
+
<em class="parameter"><code><span class="type">gint</span> left_margin</code></em>);</pre>
|
2183
|
+
<p>
|
2184
|
+
Sets the default left margin for text in <em class="parameter"><code>text_view</code></em>.
|
2185
|
+
Tags in the buffer may override the default.
|
2186
|
+
</p>
|
2187
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2188
|
+
<colgroup>
|
2189
|
+
<col align="left" valign="top">
|
2190
|
+
<col>
|
2191
|
+
</colgroup>
|
2192
|
+
<tbody>
|
2193
|
+
<tr>
|
2194
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2195
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2196
|
+
</td>
|
2197
|
+
</tr>
|
2198
|
+
<tr>
|
2199
|
+
<td><p><span class="term"><em class="parameter"><code>left_margin</code></em> :</span></p></td>
|
2200
|
+
<td>left margin in pixels</td>
|
2201
|
+
</tr>
|
2202
|
+
</tbody>
|
2203
|
+
</table></div>
|
2204
|
+
</div>
|
2205
|
+
<hr>
|
2206
|
+
<div class="refsect2">
|
2207
|
+
<a name="gtk-text-view-get-left-margin"></a><h3>gtk_text_view_get_left_margin ()</h3>
|
2208
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_view_get_left_margin (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
2209
|
+
<p>
|
2210
|
+
Gets the default left margin size of paragraphs in the <em class="parameter"><code>text_view</code></em>.
|
2211
|
+
Tags in the buffer may override the default.
|
2212
|
+
</p>
|
2213
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2214
|
+
<colgroup>
|
2215
|
+
<col align="left" valign="top">
|
2216
|
+
<col>
|
2217
|
+
</colgroup>
|
2218
|
+
<tbody>
|
2219
|
+
<tr>
|
2220
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2221
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2222
|
+
</td>
|
2223
|
+
</tr>
|
2224
|
+
<tr>
|
2225
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2226
|
+
<td>left margin in pixels</td>
|
2227
|
+
</tr>
|
2228
|
+
</tbody>
|
2229
|
+
</table></div>
|
2230
|
+
</div>
|
2231
|
+
<hr>
|
2232
|
+
<div class="refsect2">
|
2233
|
+
<a name="gtk-text-view-set-right-margin"></a><h3>gtk_text_view_set_right_margin ()</h3>
|
2234
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_right_margin (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
2235
|
+
<em class="parameter"><code><span class="type">gint</span> right_margin</code></em>);</pre>
|
2236
|
+
<p>
|
2237
|
+
Sets the default right margin for text in the text view.
|
2238
|
+
Tags in the buffer may override the default.
|
2239
|
+
</p>
|
2240
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2241
|
+
<colgroup>
|
2242
|
+
<col align="left" valign="top">
|
2243
|
+
<col>
|
2244
|
+
</colgroup>
|
2245
|
+
<tbody>
|
2246
|
+
<tr>
|
2247
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2248
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2249
|
+
</td>
|
2250
|
+
</tr>
|
2251
|
+
<tr>
|
2252
|
+
<td><p><span class="term"><em class="parameter"><code>right_margin</code></em> :</span></p></td>
|
2253
|
+
<td>right margin in pixels</td>
|
2254
|
+
</tr>
|
2255
|
+
</tbody>
|
2256
|
+
</table></div>
|
2257
|
+
</div>
|
2258
|
+
<hr>
|
2259
|
+
<div class="refsect2">
|
2260
|
+
<a name="gtk-text-view-get-right-margin"></a><h3>gtk_text_view_get_right_margin ()</h3>
|
2261
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_view_get_right_margin (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
2262
|
+
<p>
|
2263
|
+
Gets the default right margin for text in <em class="parameter"><code>text_view</code></em>. Tags
|
2264
|
+
in the buffer may override the default.
|
2265
|
+
</p>
|
2266
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2267
|
+
<colgroup>
|
2268
|
+
<col align="left" valign="top">
|
2269
|
+
<col>
|
2270
|
+
</colgroup>
|
2271
|
+
<tbody>
|
2272
|
+
<tr>
|
2273
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2274
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2275
|
+
</td>
|
2276
|
+
</tr>
|
2277
|
+
<tr>
|
2278
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2279
|
+
<td>right margin in pixels</td>
|
2280
|
+
</tr>
|
2281
|
+
</tbody>
|
2282
|
+
</table></div>
|
2283
|
+
</div>
|
2284
|
+
<hr>
|
2285
|
+
<div class="refsect2">
|
2286
|
+
<a name="gtk-text-view-set-indent"></a><h3>gtk_text_view_set_indent ()</h3>
|
2287
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_indent (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
2288
|
+
<em class="parameter"><code><span class="type">gint</span> indent</code></em>);</pre>
|
2289
|
+
<p>
|
2290
|
+
Sets the default indentation for paragraphs in <em class="parameter"><code>text_view</code></em>.
|
2291
|
+
Tags in the buffer may override the default.
|
2292
|
+
</p>
|
2293
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2294
|
+
<colgroup>
|
2295
|
+
<col align="left" valign="top">
|
2296
|
+
<col>
|
2297
|
+
</colgroup>
|
2298
|
+
<tbody>
|
2299
|
+
<tr>
|
2300
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2301
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2302
|
+
</td>
|
2303
|
+
</tr>
|
2304
|
+
<tr>
|
2305
|
+
<td><p><span class="term"><em class="parameter"><code>indent</code></em> :</span></p></td>
|
2306
|
+
<td>indentation in pixels</td>
|
2307
|
+
</tr>
|
2308
|
+
</tbody>
|
2309
|
+
</table></div>
|
2310
|
+
</div>
|
2311
|
+
<hr>
|
2312
|
+
<div class="refsect2">
|
2313
|
+
<a name="gtk-text-view-get-indent"></a><h3>gtk_text_view_get_indent ()</h3>
|
2314
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_view_get_indent (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
2315
|
+
<p>
|
2316
|
+
Gets the default indentation of paragraphs in <em class="parameter"><code>text_view</code></em>.
|
2317
|
+
Tags in the view's buffer may override the default.
|
2318
|
+
The indentation may be negative.
|
2319
|
+
</p>
|
2320
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2321
|
+
<colgroup>
|
2322
|
+
<col align="left" valign="top">
|
2323
|
+
<col>
|
2324
|
+
</colgroup>
|
2325
|
+
<tbody>
|
2326
|
+
<tr>
|
2327
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2328
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2329
|
+
</td>
|
2330
|
+
</tr>
|
2331
|
+
<tr>
|
2332
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2333
|
+
<td>number of pixels of indentation</td>
|
2334
|
+
</tr>
|
2335
|
+
</tbody>
|
2336
|
+
</table></div>
|
2337
|
+
</div>
|
2338
|
+
<hr>
|
2339
|
+
<div class="refsect2">
|
2340
|
+
<a name="gtk-text-view-set-tabs"></a><h3>gtk_text_view_set_tabs ()</h3>
|
2341
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_tabs (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
2342
|
+
<em class="parameter"><code><span class="type">PangoTabArray</span> *tabs</code></em>);</pre>
|
2343
|
+
<p>
|
2344
|
+
Sets the default tab stops for paragraphs in <em class="parameter"><code>text_view</code></em>.
|
2345
|
+
Tags in the buffer may override the default.
|
2346
|
+
</p>
|
2347
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2348
|
+
<colgroup>
|
2349
|
+
<col align="left" valign="top">
|
2350
|
+
<col>
|
2351
|
+
</colgroup>
|
2352
|
+
<tbody>
|
2353
|
+
<tr>
|
2354
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2355
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2356
|
+
</td>
|
2357
|
+
</tr>
|
2358
|
+
<tr>
|
2359
|
+
<td><p><span class="term"><em class="parameter"><code>tabs</code></em> :</span></p></td>
|
2360
|
+
<td>tabs as a <span class="type">PangoTabArray</span>
|
2361
|
+
</td>
|
2362
|
+
</tr>
|
2363
|
+
</tbody>
|
2364
|
+
</table></div>
|
2365
|
+
</div>
|
2366
|
+
<hr>
|
2367
|
+
<div class="refsect2">
|
2368
|
+
<a name="gtk-text-view-get-tabs"></a><h3>gtk_text_view_get_tabs ()</h3>
|
2369
|
+
<pre class="programlisting"><span class="returnvalue">PangoTabArray</span> * gtk_text_view_get_tabs (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
2370
|
+
<p>
|
2371
|
+
Gets the default tabs for <em class="parameter"><code>text_view</code></em>. Tags in the buffer may
|
2372
|
+
override the defaults. The returned array will be <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if
|
2373
|
+
"standard" (8-space) tabs are used. Free the return value
|
2374
|
+
with <code class="function">pango_tab_array_free()</code>.
|
2375
|
+
</p>
|
2376
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2377
|
+
<colgroup>
|
2378
|
+
<col align="left" valign="top">
|
2379
|
+
<col>
|
2380
|
+
</colgroup>
|
2381
|
+
<tbody>
|
2382
|
+
<tr>
|
2383
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2384
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2385
|
+
</td>
|
2386
|
+
</tr>
|
2387
|
+
<tr>
|
2388
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2389
|
+
<td>copy of default tab array, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if "standard"
|
2390
|
+
tabs are used; must be freed with <code class="function">pango_tab_array_free()</code>.</td>
|
2391
|
+
</tr>
|
2392
|
+
</tbody>
|
2393
|
+
</table></div>
|
2394
|
+
</div>
|
2395
|
+
<hr>
|
2396
|
+
<div class="refsect2">
|
2397
|
+
<a name="gtk-text-view-set-accepts-tab"></a><h3>gtk_text_view_set_accepts_tab ()</h3>
|
2398
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_accepts_tab (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
2399
|
+
<em class="parameter"><code><span class="type">gboolean</span> accepts_tab</code></em>);</pre>
|
2400
|
+
<p>
|
2401
|
+
Sets the behavior of the text widget when the Tab key is pressed.
|
2402
|
+
If <em class="parameter"><code>accepts_tab</code></em> is <code class="literal">TRUE</code>, a tab character is inserted. If <em class="parameter"><code>accepts_tab</code></em>
|
2403
|
+
is <code class="literal">FALSE</code> the keyboard focus is moved to the next widget in the focus
|
2404
|
+
chain.
|
2405
|
+
</p>
|
2406
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2407
|
+
<colgroup>
|
2408
|
+
<col align="left" valign="top">
|
2409
|
+
<col>
|
2410
|
+
</colgroup>
|
2411
|
+
<tbody>
|
2412
|
+
<tr>
|
2413
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2414
|
+
<td>A <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2415
|
+
</td>
|
2416
|
+
</tr>
|
2417
|
+
<tr>
|
2418
|
+
<td><p><span class="term"><em class="parameter"><code>accepts_tab</code></em> :</span></p></td>
|
2419
|
+
<td>
|
2420
|
+
<code class="literal">TRUE</code> if pressing the Tab key should insert a tab
|
2421
|
+
character, <code class="literal">FALSE</code>, if pressing the Tab key should move the
|
2422
|
+
keyboard focus.</td>
|
2423
|
+
</tr>
|
2424
|
+
</tbody>
|
2425
|
+
</table></div>
|
2426
|
+
<p class="since">Since 2.4</p>
|
2427
|
+
</div>
|
2428
|
+
<hr>
|
2429
|
+
<div class="refsect2">
|
2430
|
+
<a name="gtk-text-view-get-accepts-tab"></a><h3>gtk_text_view_get_accepts_tab ()</h3>
|
2431
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_get_accepts_tab (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
2432
|
+
<p>
|
2433
|
+
Returns whether pressing the Tab key inserts a tab characters.
|
2434
|
+
<a class="link" href="GtkTextView.html#gtk-text-view-set-accepts-tab" title="gtk_text_view_set_accepts_tab ()"><code class="function">gtk_text_view_set_accepts_tab()</code></a>.
|
2435
|
+
</p>
|
2436
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2437
|
+
<colgroup>
|
2438
|
+
<col align="left" valign="top">
|
2439
|
+
<col>
|
2440
|
+
</colgroup>
|
2441
|
+
<tbody>
|
2442
|
+
<tr>
|
2443
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2444
|
+
<td>A <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2445
|
+
</td>
|
2446
|
+
</tr>
|
2447
|
+
<tr>
|
2448
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2449
|
+
<td>
|
2450
|
+
<code class="literal">TRUE</code> if pressing the Tab key inserts a tab character,
|
2451
|
+
<code class="literal">FALSE</code> if pressing the Tab key moves the keyboard focus.</td>
|
2452
|
+
</tr>
|
2453
|
+
</tbody>
|
2454
|
+
</table></div>
|
2455
|
+
<p class="since">Since 2.4</p>
|
2456
|
+
</div>
|
2457
|
+
<hr>
|
2458
|
+
<div class="refsect2">
|
2459
|
+
<a name="gtk-text-view-get-default-attributes"></a><h3>gtk_text_view_get_default_attributes ()</h3>
|
2460
|
+
<pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * gtk_text_view_get_default_attributes
|
2461
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
2462
|
+
<p>
|
2463
|
+
Obtains a copy of the default text attributes. These are the
|
2464
|
+
attributes used for text unless a tag overrides them.
|
2465
|
+
You'd typically pass the default attributes in to
|
2466
|
+
<a class="link" href="GtkTextIter.html#gtk-text-iter-get-attributes" title="gtk_text_iter_get_attributes ()"><code class="function">gtk_text_iter_get_attributes()</code></a> in order to get the
|
2467
|
+
attributes in effect at a given text position.
|
2468
|
+
</p>
|
2469
|
+
<p>
|
2470
|
+
The return value is a copy owned by the caller of this function,
|
2471
|
+
and should be freed.
|
2472
|
+
</p>
|
2473
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2474
|
+
<colgroup>
|
2475
|
+
<col align="left" valign="top">
|
2476
|
+
<col>
|
2477
|
+
</colgroup>
|
2478
|
+
<tbody>
|
2479
|
+
<tr>
|
2480
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2481
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2482
|
+
</td>
|
2483
|
+
</tr>
|
2484
|
+
<tr>
|
2485
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2486
|
+
<td>a new <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
2487
|
+
</td>
|
2488
|
+
</tr>
|
2489
|
+
</tbody>
|
2490
|
+
</table></div>
|
2491
|
+
</div>
|
2492
|
+
<hr>
|
2493
|
+
<div class="refsect2">
|
2494
|
+
<a name="gtk-text-view-im-context-filter-keypress"></a><h3>gtk_text_view_im_context_filter_keypress ()</h3>
|
2495
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_view_im_context_filter_keypress
|
2496
|
+
(<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
2497
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>);</pre>
|
2498
|
+
<p>
|
2499
|
+
Allow the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> input method to internally handle key press
|
2500
|
+
and release events. If this function returns <code class="literal">TRUE</code>, then no further
|
2501
|
+
processing should be done for this key event. See
|
2502
|
+
<a class="link" href="GtkIMContext.html#gtk-im-context-filter-keypress" title="gtk_im_context_filter_keypress ()"><code class="function">gtk_im_context_filter_keypress()</code></a>.
|
2503
|
+
</p>
|
2504
|
+
<p>
|
2505
|
+
Note that you are expected to call this function from your handler
|
2506
|
+
when overriding key event handling. This is needed in the case when
|
2507
|
+
you need to insert your own key handling between the input method
|
2508
|
+
and the default key event handling of the <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>.
|
2509
|
+
</p>
|
2510
|
+
<p>
|
2511
|
+
</p>
|
2512
|
+
<div class="informalexample">
|
2513
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
2514
|
+
<tbody>
|
2515
|
+
<tr>
|
2516
|
+
<td class="listing_lines" align="right"><pre>1
|
2517
|
+
2
|
2518
|
+
3
|
2519
|
+
4
|
2520
|
+
5
|
2521
|
+
6
|
2522
|
+
7
|
2523
|
+
8
|
2524
|
+
9
|
2525
|
+
10
|
2526
|
+
11
|
2527
|
+
12
|
2528
|
+
13
|
2529
|
+
14</pre></td>
|
2530
|
+
<td class="listing_code"><pre class="programlisting"><span class="keyword">static</span><span class="normal"> gboolean</span>
|
2531
|
+
<span class="function">gtk_foo_bar_key_press_event</span><span class="normal"> </span><span class="symbol">(</span><span class="usertype">GtkWidget</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">widget</span><span class="symbol">,</span>
|
2532
|
+
<span class="normal"> </span><span class="usertype">GdkEventKey</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">event</span><span class="symbol">)</span>
|
2533
|
+
<span class="cbracket">{</span>
|
2534
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">((</span><span class="normal">key</span><span class="symbol">-></span><span class="normal">keyval </span><span class="symbol">==</span><span class="normal"> GDK_KEY_Return </span><span class="symbol">||</span><span class="normal"> key</span><span class="symbol">-></span><span class="normal">keyval </span><span class="symbol">==</span><span class="normal"> GDK_KEY_KP_Enter</span><span class="symbol">))</span>
|
2535
|
+
<span class="normal"> </span><span class="cbracket">{</span>
|
2536
|
+
<span class="normal"> </span><span class="keyword">if</span><span class="normal"> </span><span class="symbol">(</span><span class="function"><a href="GtkTextView.html#gtk-text-view-im-context-filter-keypress">gtk_text_view_im_context_filter_keypress</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">GTK_TEXT_VIEW</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">view</span><span class="symbol">),</span><span class="normal"> event</span><span class="symbol">))</span>
|
2537
|
+
<span class="normal"> </span><span class="keyword">return</span><span class="normal"> TRUE</span><span class="symbol">;</span>
|
2538
|
+
<span class="normal"> </span><span class="cbracket">}</span>
|
2539
|
+
|
2540
|
+
<span class="normal"> </span><span class="comment">/* Do some stuff */</span>
|
2541
|
+
|
2542
|
+
<span class="normal"> </span><span class="keyword">return</span><span class="normal"> </span><span class="function">GTK_WIDGET_CLASS</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">gtk_foo_bar_parent_class</span><span class="symbol">)-></span><span class="function">key_press_event</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">widget</span><span class="symbol">,</span><span class="normal"> event</span><span class="symbol">);</span>
|
2543
|
+
<span class="cbracket">}</span></pre></td>
|
2544
|
+
</tr>
|
2545
|
+
</tbody>
|
2546
|
+
</table>
|
2547
|
+
</div>
|
2548
|
+
|
2549
|
+
<p>
|
2550
|
+
</p>
|
2551
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2552
|
+
<colgroup>
|
2553
|
+
<col align="left" valign="top">
|
2554
|
+
<col>
|
2555
|
+
</colgroup>
|
2556
|
+
<tbody>
|
2557
|
+
<tr>
|
2558
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2559
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2560
|
+
</td>
|
2561
|
+
</tr>
|
2562
|
+
<tr>
|
2563
|
+
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
2564
|
+
<td>the key event</td>
|
2565
|
+
</tr>
|
2566
|
+
<tr>
|
2567
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2568
|
+
<td>
|
2569
|
+
<code class="literal">TRUE</code> if the input method handled the key event.</td>
|
2570
|
+
</tr>
|
2571
|
+
</tbody>
|
2572
|
+
</table></div>
|
2573
|
+
<p class="since">Since 2.22</p>
|
2574
|
+
</div>
|
2575
|
+
<hr>
|
2576
|
+
<div class="refsect2">
|
2577
|
+
<a name="gtk-text-view-reset-im-context"></a><h3>gtk_text_view_reset_im_context ()</h3>
|
2578
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_reset_im_context (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
2579
|
+
<p>
|
2580
|
+
Reset the input method context of the text view if needed.
|
2581
|
+
</p>
|
2582
|
+
<p>
|
2583
|
+
This can be necessary in the case where modifying the buffer
|
2584
|
+
would confuse on-going input method behavior.
|
2585
|
+
</p>
|
2586
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2587
|
+
<colgroup>
|
2588
|
+
<col align="left" valign="top">
|
2589
|
+
<col>
|
2590
|
+
</colgroup>
|
2591
|
+
<tbody><tr>
|
2592
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2593
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2594
|
+
</td>
|
2595
|
+
</tr></tbody>
|
2596
|
+
</table></div>
|
2597
|
+
<p class="since">Since 2.22</p>
|
2598
|
+
</div>
|
2599
|
+
<hr>
|
2600
|
+
<div class="refsect2">
|
2601
|
+
<a name="gtk-text-view-set-input-purpose"></a><h3>gtk_text_view_set_input_purpose ()</h3>
|
2602
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_input_purpose (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
2603
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="type">GtkInputPurpose</span></a> purpose</code></em>);</pre>
|
2604
|
+
<p>
|
2605
|
+
Sets the <a class="link" href="GtkTextView.html#GtkTextView--input-purpose" title='The "input-purpose" property'><span class="type">"input-purpose"</span></a> property which
|
2606
|
+
can be used by on-screen keyboards and other input
|
2607
|
+
methods to adjust their behaviour.
|
2608
|
+
</p>
|
2609
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2610
|
+
<colgroup>
|
2611
|
+
<col align="left" valign="top">
|
2612
|
+
<col>
|
2613
|
+
</colgroup>
|
2614
|
+
<tbody>
|
2615
|
+
<tr>
|
2616
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2617
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2618
|
+
</td>
|
2619
|
+
</tr>
|
2620
|
+
<tr>
|
2621
|
+
<td><p><span class="term"><em class="parameter"><code>purpose</code></em> :</span></p></td>
|
2622
|
+
<td>the purpose</td>
|
2623
|
+
</tr>
|
2624
|
+
</tbody>
|
2625
|
+
</table></div>
|
2626
|
+
<p class="since">Since 3.6</p>
|
2627
|
+
</div>
|
2628
|
+
<hr>
|
2629
|
+
<div class="refsect2">
|
2630
|
+
<a name="gtk-text-view-get-input-purpose"></a><h3>gtk_text_view_get_input_purpose ()</h3>
|
2631
|
+
<pre class="programlisting"><a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="returnvalue">GtkInputPurpose</span></a> gtk_text_view_get_input_purpose (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
2632
|
+
<p>
|
2633
|
+
Gets the value of the <a class="link" href="GtkTextView.html#GtkTextView--input-purpose" title='The "input-purpose" property'><span class="type">"input-purpose"</span></a> property.
|
2634
|
+
</p>
|
2635
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2636
|
+
<colgroup>
|
2637
|
+
<col align="left" valign="top">
|
2638
|
+
<col>
|
2639
|
+
</colgroup>
|
2640
|
+
<tbody><tr>
|
2641
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2642
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2643
|
+
</td>
|
2644
|
+
</tr></tbody>
|
2645
|
+
</table></div>
|
2646
|
+
<p class="since">Since 3.6</p>
|
2647
|
+
</div>
|
2648
|
+
<hr>
|
2649
|
+
<div class="refsect2">
|
2650
|
+
<a name="gtk-text-view-set-input-hints"></a><h3>gtk_text_view_set_input_hints ()</h3>
|
2651
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_view_set_input_hints (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>,
|
2652
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="type">GtkInputHints</span></a> hints</code></em>);</pre>
|
2653
|
+
<p>
|
2654
|
+
Sets the <a class="link" href="GtkTextView.html#GtkTextView--input-hints" title='The "input-hints" property'><span class="type">"input-hints"</span></a> property, which
|
2655
|
+
allows input methods to fine-tune their behaviour.
|
2656
|
+
</p>
|
2657
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2658
|
+
<colgroup>
|
2659
|
+
<col align="left" valign="top">
|
2660
|
+
<col>
|
2661
|
+
</colgroup>
|
2662
|
+
<tbody>
|
2663
|
+
<tr>
|
2664
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2665
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2666
|
+
</td>
|
2667
|
+
</tr>
|
2668
|
+
<tr>
|
2669
|
+
<td><p><span class="term"><em class="parameter"><code>hints</code></em> :</span></p></td>
|
2670
|
+
<td>the hints</td>
|
2671
|
+
</tr>
|
2672
|
+
</tbody>
|
2673
|
+
</table></div>
|
2674
|
+
<p class="since">Since 3.6</p>
|
2675
|
+
</div>
|
2676
|
+
<hr>
|
2677
|
+
<div class="refsect2">
|
2678
|
+
<a name="gtk-text-view-get-input-hints"></a><h3>gtk_text_view_get_input_hints ()</h3>
|
2679
|
+
<pre class="programlisting"><a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="returnvalue">GtkInputHints</span></a> gtk_text_view_get_input_hints (<em class="parameter"><code><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view</code></em>);</pre>
|
2680
|
+
<p>
|
2681
|
+
Gets the value of the <a class="link" href="GtkTextView.html#GtkTextView--input-hints" title='The "input-hints" property'><span class="type">"input-hints"</span></a> property.
|
2682
|
+
</p>
|
2683
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2684
|
+
<colgroup>
|
2685
|
+
<col align="left" valign="top">
|
2686
|
+
<col>
|
2687
|
+
</colgroup>
|
2688
|
+
<tbody><tr>
|
2689
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2690
|
+
<td>a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>
|
2691
|
+
</td>
|
2692
|
+
</tr></tbody>
|
2693
|
+
</table></div>
|
2694
|
+
<p class="since">Since 3.6</p>
|
2695
|
+
</div>
|
2696
|
+
<hr>
|
2697
|
+
<div class="refsect2">
|
2698
|
+
<a name="GTK-TEXT-VIEW-PRIORITY-VALIDATE:CAPS"></a><h3>GTK_TEXT_VIEW_PRIORITY_VALIDATE</h3>
|
2699
|
+
<pre class="programlisting">#define GTK_TEXT_VIEW_PRIORITY_VALIDATE (GDK_PRIORITY_REDRAW + 5)
|
2700
|
+
</pre>
|
2701
|
+
<p>
|
2702
|
+
The priority at which the text view validates onscreen lines
|
2703
|
+
in an idle job in the background.
|
2704
|
+
</p>
|
2705
|
+
</div>
|
2706
|
+
</div>
|
2707
|
+
<div class="refsect1">
|
2708
|
+
<a name="GtkTextView.property-details"></a><h2>Property Details</h2>
|
2709
|
+
<div class="refsect2">
|
2710
|
+
<a name="GtkTextView--accepts-tab"></a><h3>The <code class="literal">"accepts-tab"</code> property</h3>
|
2711
|
+
<pre class="programlisting"> "accepts-tab" <span class="type">gboolean</span> : Read / Write</pre>
|
2712
|
+
<p>Whether Tab will result in a tab character being entered.</p>
|
2713
|
+
<p>Default value: TRUE</p>
|
2714
|
+
</div>
|
2715
|
+
<hr>
|
2716
|
+
<div class="refsect2">
|
2717
|
+
<a name="GtkTextView--buffer"></a><h3>The <code class="literal">"buffer"</code> property</h3>
|
2718
|
+
<pre class="programlisting"> "buffer" <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>* : Read / Write</pre>
|
2719
|
+
<p>The buffer which is displayed.</p>
|
2720
|
+
</div>
|
2721
|
+
<hr>
|
2722
|
+
<div class="refsect2">
|
2723
|
+
<a name="GtkTextView--cursor-visible"></a><h3>The <code class="literal">"cursor-visible"</code> property</h3>
|
2724
|
+
<pre class="programlisting"> "cursor-visible" <span class="type">gboolean</span> : Read / Write</pre>
|
2725
|
+
<p>If the insertion cursor is shown.</p>
|
2726
|
+
<p>Default value: TRUE</p>
|
2727
|
+
</div>
|
2728
|
+
<hr>
|
2729
|
+
<div class="refsect2">
|
2730
|
+
<a name="GtkTextView--editable"></a><h3>The <code class="literal">"editable"</code> property</h3>
|
2731
|
+
<pre class="programlisting"> "editable" <span class="type">gboolean</span> : Read / Write</pre>
|
2732
|
+
<p>Whether the text can be modified by the user.</p>
|
2733
|
+
<p>Default value: TRUE</p>
|
2734
|
+
</div>
|
2735
|
+
<hr>
|
2736
|
+
<div class="refsect2">
|
2737
|
+
<a name="GtkTextView--im-module"></a><h3>The <code class="literal">"im-module"</code> property</h3>
|
2738
|
+
<pre class="programlisting"> "im-module" <span class="type">gchar</span>* : Read / Write</pre>
|
2739
|
+
<p>
|
2740
|
+
Which IM (input method) module should be used for this text_view.
|
2741
|
+
See <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>.
|
2742
|
+
</p>
|
2743
|
+
<p>
|
2744
|
+
Setting this to a non-<a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> value overrides the
|
2745
|
+
system-wide IM module setting. See the GtkSettings
|
2746
|
+
<a class="link" href="GtkSettings.html#GtkSettings--gtk-im-module" title='The "gtk-im-module" property'><span class="type">"gtk-im-module"</span></a> property.
|
2747
|
+
</p>
|
2748
|
+
<p>Default value: NULL</p>
|
2749
|
+
<p class="since">Since 2.16</p>
|
2750
|
+
</div>
|
2751
|
+
<hr>
|
2752
|
+
<div class="refsect2">
|
2753
|
+
<a name="GtkTextView--indent"></a><h3>The <code class="literal">"indent"</code> property</h3>
|
2754
|
+
<pre class="programlisting"> "indent" <span class="type">gint</span> : Read / Write</pre>
|
2755
|
+
<p>Amount to indent the paragraph, in pixels.</p>
|
2756
|
+
<p>Default value: 0</p>
|
2757
|
+
</div>
|
2758
|
+
<hr>
|
2759
|
+
<div class="refsect2">
|
2760
|
+
<a name="GtkTextView--input-hints"></a><h3>The <code class="literal">"input-hints"</code> property</h3>
|
2761
|
+
<pre class="programlisting"> "input-hints" <a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="type">GtkInputHints</span></a> : Read / Write</pre>
|
2762
|
+
<p>
|
2763
|
+
Additional hints (beyond <a class="link" href="GtkTextView.html#GtkTextView--input-purpose" title='The "input-purpose" property'><span class="type">"input-purpose"</span></a>) that
|
2764
|
+
allow input methods to fine-tune their behaviour.
|
2765
|
+
</p>
|
2766
|
+
<p class="since">Since 3.6</p>
|
2767
|
+
</div>
|
2768
|
+
<hr>
|
2769
|
+
<div class="refsect2">
|
2770
|
+
<a name="GtkTextView--input-purpose"></a><h3>The <code class="literal">"input-purpose"</code> property</h3>
|
2771
|
+
<pre class="programlisting"> "input-purpose" <a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="type">GtkInputPurpose</span></a> : Read / Write</pre>
|
2772
|
+
<p>
|
2773
|
+
The purpose of this text field.
|
2774
|
+
</p>
|
2775
|
+
<p>
|
2776
|
+
This property can be used by on-screen keyboards and other input
|
2777
|
+
methods to adjust their behaviour.
|
2778
|
+
</p>
|
2779
|
+
<p>Default value: GTK_INPUT_PURPOSE_FREE_FORM</p>
|
2780
|
+
<p class="since">Since 3.6</p>
|
2781
|
+
</div>
|
2782
|
+
<hr>
|
2783
|
+
<div class="refsect2">
|
2784
|
+
<a name="GtkTextView--justification"></a><h3>The <code class="literal">"justification"</code> property</h3>
|
2785
|
+
<pre class="programlisting"> "justification" <a class="link" href="gtk3-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> : Read / Write</pre>
|
2786
|
+
<p>Left, right, or center justification.</p>
|
2787
|
+
<p>Default value: GTK_JUSTIFY_LEFT</p>
|
2788
|
+
</div>
|
2789
|
+
<hr>
|
2790
|
+
<div class="refsect2">
|
2791
|
+
<a name="GtkTextView--left-margin"></a><h3>The <code class="literal">"left-margin"</code> property</h3>
|
2792
|
+
<pre class="programlisting"> "left-margin" <span class="type">gint</span> : Read / Write</pre>
|
2793
|
+
<p>Width of the left margin in pixels.</p>
|
2794
|
+
<p>Allowed values: >= 0</p>
|
2795
|
+
<p>Default value: 0</p>
|
2796
|
+
</div>
|
2797
|
+
<hr>
|
2798
|
+
<div class="refsect2">
|
2799
|
+
<a name="GtkTextView--overwrite"></a><h3>The <code class="literal">"overwrite"</code> property</h3>
|
2800
|
+
<pre class="programlisting"> "overwrite" <span class="type">gboolean</span> : Read / Write</pre>
|
2801
|
+
<p>Whether entered text overwrites existing contents.</p>
|
2802
|
+
<p>Default value: FALSE</p>
|
2803
|
+
</div>
|
2804
|
+
<hr>
|
2805
|
+
<div class="refsect2">
|
2806
|
+
<a name="GtkTextView--pixels-above-lines"></a><h3>The <code class="literal">"pixels-above-lines"</code> property</h3>
|
2807
|
+
<pre class="programlisting"> "pixels-above-lines" <span class="type">gint</span> : Read / Write</pre>
|
2808
|
+
<p>Pixels of blank space above paragraphs.</p>
|
2809
|
+
<p>Allowed values: >= 0</p>
|
2810
|
+
<p>Default value: 0</p>
|
2811
|
+
</div>
|
2812
|
+
<hr>
|
2813
|
+
<div class="refsect2">
|
2814
|
+
<a name="GtkTextView--pixels-below-lines"></a><h3>The <code class="literal">"pixels-below-lines"</code> property</h3>
|
2815
|
+
<pre class="programlisting"> "pixels-below-lines" <span class="type">gint</span> : Read / Write</pre>
|
2816
|
+
<p>Pixels of blank space below paragraphs.</p>
|
2817
|
+
<p>Allowed values: >= 0</p>
|
2818
|
+
<p>Default value: 0</p>
|
2819
|
+
</div>
|
2820
|
+
<hr>
|
2821
|
+
<div class="refsect2">
|
2822
|
+
<a name="GtkTextView--pixels-inside-wrap"></a><h3>The <code class="literal">"pixels-inside-wrap"</code> property</h3>
|
2823
|
+
<pre class="programlisting"> "pixels-inside-wrap" <span class="type">gint</span> : Read / Write</pre>
|
2824
|
+
<p>Pixels of blank space between wrapped lines in a paragraph.</p>
|
2825
|
+
<p>Allowed values: >= 0</p>
|
2826
|
+
<p>Default value: 0</p>
|
2827
|
+
</div>
|
2828
|
+
<hr>
|
2829
|
+
<div class="refsect2">
|
2830
|
+
<a name="GtkTextView--right-margin"></a><h3>The <code class="literal">"right-margin"</code> property</h3>
|
2831
|
+
<pre class="programlisting"> "right-margin" <span class="type">gint</span> : Read / Write</pre>
|
2832
|
+
<p>Width of the right margin in pixels.</p>
|
2833
|
+
<p>Allowed values: >= 0</p>
|
2834
|
+
<p>Default value: 0</p>
|
2835
|
+
</div>
|
2836
|
+
<hr>
|
2837
|
+
<div class="refsect2">
|
2838
|
+
<a name="GtkTextView--tabs"></a><h3>The <code class="literal">"tabs"</code> property</h3>
|
2839
|
+
<pre class="programlisting"> "tabs" <span class="type">PangoTabArray</span>* : Read / Write</pre>
|
2840
|
+
<p>Custom tabs for this text.</p>
|
2841
|
+
</div>
|
2842
|
+
<hr>
|
2843
|
+
<div class="refsect2">
|
2844
|
+
<a name="GtkTextView--wrap-mode"></a><h3>The <code class="literal">"wrap-mode"</code> property</h3>
|
2845
|
+
<pre class="programlisting"> "wrap-mode" <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a> : Read / Write</pre>
|
2846
|
+
<p>Whether to wrap lines never, at word boundaries, or at character boundaries.</p>
|
2847
|
+
<p>Default value: GTK_WRAP_NONE</p>
|
2848
|
+
</div>
|
2849
|
+
</div>
|
2850
|
+
<div class="refsect1">
|
2851
|
+
<a name="GtkTextView.style-property-details"></a><h2>Style Property Details</h2>
|
2852
|
+
<div class="refsect2">
|
2853
|
+
<a name="GtkTextView--s-error-underline-color"></a><h3>The <code class="literal">"error-underline-color"</code> style property</h3>
|
2854
|
+
<pre class="programlisting"> "error-underline-color" <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read</pre>
|
2855
|
+
<p>Color with which to draw error-indication underlines.</p>
|
2856
|
+
</div>
|
2857
|
+
</div>
|
2858
|
+
<div class="refsect1">
|
2859
|
+
<a name="GtkTextView.signal-details"></a><h2>Signal Details</h2>
|
2860
|
+
<div class="refsect2">
|
2861
|
+
<a name="GtkTextView-backspace"></a><h3>The <code class="literal">"backspace"</code> signal</h3>
|
2862
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
2863
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
2864
|
+
<p>
|
2865
|
+
The ::backspace signal is a
|
2866
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
2867
|
+
which gets emitted when the user asks for it.
|
2868
|
+
</p>
|
2869
|
+
<p>
|
2870
|
+
The default bindings for this signal are
|
2871
|
+
Backspace and Shift-Backspace.
|
2872
|
+
</p>
|
2873
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2874
|
+
<colgroup>
|
2875
|
+
<col align="left" valign="top">
|
2876
|
+
<col>
|
2877
|
+
</colgroup>
|
2878
|
+
<tbody>
|
2879
|
+
<tr>
|
2880
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2881
|
+
<td>the object which received the signal</td>
|
2882
|
+
</tr>
|
2883
|
+
<tr>
|
2884
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2885
|
+
<td>user data set when the signal handler was connected.</td>
|
2886
|
+
</tr>
|
2887
|
+
</tbody>
|
2888
|
+
</table></div>
|
2889
|
+
</div>
|
2890
|
+
<hr>
|
2891
|
+
<div class="refsect2">
|
2892
|
+
<a name="GtkTextView-copy-clipboard"></a><h3>The <code class="literal">"copy-clipboard"</code> signal</h3>
|
2893
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
2894
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
2895
|
+
<p>
|
2896
|
+
The ::copy-clipboard signal is a
|
2897
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
2898
|
+
which gets emitted to copy the selection to the clipboard.
|
2899
|
+
</p>
|
2900
|
+
<p>
|
2901
|
+
The default bindings for this signal are
|
2902
|
+
Ctrl-c and Ctrl-Insert.
|
2903
|
+
</p>
|
2904
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2905
|
+
<colgroup>
|
2906
|
+
<col align="left" valign="top">
|
2907
|
+
<col>
|
2908
|
+
</colgroup>
|
2909
|
+
<tbody>
|
2910
|
+
<tr>
|
2911
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2912
|
+
<td>the object which received the signal</td>
|
2913
|
+
</tr>
|
2914
|
+
<tr>
|
2915
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2916
|
+
<td>user data set when the signal handler was connected.</td>
|
2917
|
+
</tr>
|
2918
|
+
</tbody>
|
2919
|
+
</table></div>
|
2920
|
+
</div>
|
2921
|
+
<hr>
|
2922
|
+
<div class="refsect2">
|
2923
|
+
<a name="GtkTextView-cut-clipboard"></a><h3>The <code class="literal">"cut-clipboard"</code> signal</h3>
|
2924
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
2925
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
2926
|
+
<p>
|
2927
|
+
The ::cut-clipboard signal is a
|
2928
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
2929
|
+
which gets emitted to cut the selection to the clipboard.
|
2930
|
+
</p>
|
2931
|
+
<p>
|
2932
|
+
The default bindings for this signal are
|
2933
|
+
Ctrl-x and Shift-Delete.
|
2934
|
+
</p>
|
2935
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2936
|
+
<colgroup>
|
2937
|
+
<col align="left" valign="top">
|
2938
|
+
<col>
|
2939
|
+
</colgroup>
|
2940
|
+
<tbody>
|
2941
|
+
<tr>
|
2942
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2943
|
+
<td>the object which received the signal</td>
|
2944
|
+
</tr>
|
2945
|
+
<tr>
|
2946
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2947
|
+
<td>user data set when the signal handler was connected.</td>
|
2948
|
+
</tr>
|
2949
|
+
</tbody>
|
2950
|
+
</table></div>
|
2951
|
+
</div>
|
2952
|
+
<hr>
|
2953
|
+
<div class="refsect2">
|
2954
|
+
<a name="GtkTextView-delete-from-cursor"></a><h3>The <code class="literal">"delete-from-cursor"</code> signal</h3>
|
2955
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
2956
|
+
<a class="link" href="gtk3-Standard-Enumerations.html#GtkDeleteType" title="enum GtkDeleteType"><span class="type">GtkDeleteType</span></a> type,
|
2957
|
+
<span class="type">gint</span> count,
|
2958
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
2959
|
+
<p>
|
2960
|
+
The ::delete-from-cursor signal is a
|
2961
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
2962
|
+
which gets emitted when the user initiates a text deletion.
|
2963
|
+
</p>
|
2964
|
+
<p>
|
2965
|
+
If the <em class="parameter"><code>type</code></em> is <a class="link" href="gtk3-Standard-Enumerations.html#GTK-DELETE-CHARS:CAPS"><code class="literal">GTK_DELETE_CHARS</code></a>, GTK+ deletes the selection
|
2966
|
+
if there is one, otherwise it deletes the requested number
|
2967
|
+
of characters.
|
2968
|
+
</p>
|
2969
|
+
<p>
|
2970
|
+
The default bindings for this signal are
|
2971
|
+
Delete for deleting a character, Ctrl-Delete for
|
2972
|
+
deleting a word and Ctrl-Backspace for deleting a word
|
2973
|
+
backwords.
|
2974
|
+
</p>
|
2975
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2976
|
+
<colgroup>
|
2977
|
+
<col align="left" valign="top">
|
2978
|
+
<col>
|
2979
|
+
</colgroup>
|
2980
|
+
<tbody>
|
2981
|
+
<tr>
|
2982
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
2983
|
+
<td>the object which received the signal</td>
|
2984
|
+
</tr>
|
2985
|
+
<tr>
|
2986
|
+
<td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
|
2987
|
+
<td>the granularity of the deletion, as a <a class="link" href="gtk3-Standard-Enumerations.html#GtkDeleteType" title="enum GtkDeleteType"><span class="type">GtkDeleteType</span></a>
|
2988
|
+
</td>
|
2989
|
+
</tr>
|
2990
|
+
<tr>
|
2991
|
+
<td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
|
2992
|
+
<td>the number of <em class="parameter"><code>type</code></em> units to delete</td>
|
2993
|
+
</tr>
|
2994
|
+
<tr>
|
2995
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2996
|
+
<td>user data set when the signal handler was connected.</td>
|
2997
|
+
</tr>
|
2998
|
+
</tbody>
|
2999
|
+
</table></div>
|
3000
|
+
</div>
|
3001
|
+
<hr>
|
3002
|
+
<div class="refsect2">
|
3003
|
+
<a name="GtkTextView-insert-at-cursor"></a><h3>The <code class="literal">"insert-at-cursor"</code> signal</h3>
|
3004
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
3005
|
+
<span class="type">gchar</span> *string,
|
3006
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3007
|
+
<p>
|
3008
|
+
The ::insert-at-cursor signal is a
|
3009
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3010
|
+
which gets emitted when the user initiates the insertion of a
|
3011
|
+
fixed string at the cursor.
|
3012
|
+
</p>
|
3013
|
+
<p>
|
3014
|
+
This signal has no default bindings.
|
3015
|
+
</p>
|
3016
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3017
|
+
<colgroup>
|
3018
|
+
<col align="left" valign="top">
|
3019
|
+
<col>
|
3020
|
+
</colgroup>
|
3021
|
+
<tbody>
|
3022
|
+
<tr>
|
3023
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
3024
|
+
<td>the object which received the signal</td>
|
3025
|
+
</tr>
|
3026
|
+
<tr>
|
3027
|
+
<td><p><span class="term"><em class="parameter"><code>string</code></em> :</span></p></td>
|
3028
|
+
<td>the string to insert</td>
|
3029
|
+
</tr>
|
3030
|
+
<tr>
|
3031
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3032
|
+
<td>user data set when the signal handler was connected.</td>
|
3033
|
+
</tr>
|
3034
|
+
</tbody>
|
3035
|
+
</table></div>
|
3036
|
+
</div>
|
3037
|
+
<hr>
|
3038
|
+
<div class="refsect2">
|
3039
|
+
<a name="GtkTextView-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
|
3040
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
3041
|
+
<a class="link" href="gtk3-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
|
3042
|
+
<span class="type">gint</span> count,
|
3043
|
+
<span class="type">gboolean</span> extend_selection,
|
3044
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3045
|
+
<p>
|
3046
|
+
The ::move-cursor signal is a
|
3047
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3048
|
+
which gets emitted when the user initiates a cursor movement.
|
3049
|
+
If the cursor is not visible in <em class="parameter"><code>text_view</code></em>, this signal causes
|
3050
|
+
the viewport to be moved instead.
|
3051
|
+
</p>
|
3052
|
+
<p>
|
3053
|
+
Applications should not connect to it, but may emit it with
|
3054
|
+
<code class="function">g_signal_emit_by_name()</code> if they need to control the cursor
|
3055
|
+
programmatically.
|
3056
|
+
</p>
|
3057
|
+
<p>
|
3058
|
+
The default bindings for this signal come in two variants,
|
3059
|
+
the variant with the Shift modifier extends the selection,
|
3060
|
+
the variant without the Shift modifer does not.
|
3061
|
+
There are too many key combinations to list them all here.
|
3062
|
+
</p>
|
3063
|
+
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
3064
|
+
<li class="listitem">Arrow keys move by individual characters/lines</li>
|
3065
|
+
<li class="listitem">Ctrl-arrow key combinations move by words/paragraphs</li>
|
3066
|
+
<li class="listitem">Home/End keys move to the ends of the buffer</li>
|
3067
|
+
<li class="listitem">PageUp/PageDown keys move vertically by pages</li>
|
3068
|
+
<li class="listitem">Ctrl-PageUp/PageDown keys move horizontally by pages</li>
|
3069
|
+
</ul></div>
|
3070
|
+
<p>
|
3071
|
+
</p>
|
3072
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3073
|
+
<colgroup>
|
3074
|
+
<col align="left" valign="top">
|
3075
|
+
<col>
|
3076
|
+
</colgroup>
|
3077
|
+
<tbody>
|
3078
|
+
<tr>
|
3079
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
3080
|
+
<td>the object which received the signal</td>
|
3081
|
+
</tr>
|
3082
|
+
<tr>
|
3083
|
+
<td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
|
3084
|
+
<td>the granularity of the move, as a <a class="link" href="gtk3-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a>
|
3085
|
+
</td>
|
3086
|
+
</tr>
|
3087
|
+
<tr>
|
3088
|
+
<td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
|
3089
|
+
<td>the number of <em class="parameter"><code>step</code></em> units to move</td>
|
3090
|
+
</tr>
|
3091
|
+
<tr>
|
3092
|
+
<td><p><span class="term"><em class="parameter"><code>extend_selection</code></em> :</span></p></td>
|
3093
|
+
<td>
|
3094
|
+
<code class="literal">TRUE</code> if the move should extend the selection</td>
|
3095
|
+
</tr>
|
3096
|
+
<tr>
|
3097
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3098
|
+
<td>user data set when the signal handler was connected.</td>
|
3099
|
+
</tr>
|
3100
|
+
</tbody>
|
3101
|
+
</table></div>
|
3102
|
+
</div>
|
3103
|
+
<hr>
|
3104
|
+
<div class="refsect2">
|
3105
|
+
<a name="GtkTextView-move-viewport"></a><h3>The <code class="literal">"move-viewport"</code> signal</h3>
|
3106
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
3107
|
+
<a class="link" href="gtk3-Standard-Enumerations.html#GtkScrollStep" title="enum GtkScrollStep"><span class="type">GtkScrollStep</span></a> step,
|
3108
|
+
<span class="type">gint</span> count,
|
3109
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3110
|
+
<p>
|
3111
|
+
The ::move-viewport signal is a
|
3112
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3113
|
+
which can be bound to key combinations to allow the user
|
3114
|
+
to move the viewport, i.e. change what part of the text view
|
3115
|
+
is visible in a containing scrolled window.
|
3116
|
+
</p>
|
3117
|
+
<p>
|
3118
|
+
There are no default bindings for this signal.
|
3119
|
+
</p>
|
3120
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3121
|
+
<colgroup>
|
3122
|
+
<col align="left" valign="top">
|
3123
|
+
<col>
|
3124
|
+
</colgroup>
|
3125
|
+
<tbody>
|
3126
|
+
<tr>
|
3127
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
3128
|
+
<td>the object which received the signal</td>
|
3129
|
+
</tr>
|
3130
|
+
<tr>
|
3131
|
+
<td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
|
3132
|
+
<td>the granularity of the move, as a <a class="link" href="gtk3-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a>
|
3133
|
+
</td>
|
3134
|
+
</tr>
|
3135
|
+
<tr>
|
3136
|
+
<td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
|
3137
|
+
<td>the number of <em class="parameter"><code>step</code></em> units to move</td>
|
3138
|
+
</tr>
|
3139
|
+
<tr>
|
3140
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3141
|
+
<td>user data set when the signal handler was connected.</td>
|
3142
|
+
</tr>
|
3143
|
+
</tbody>
|
3144
|
+
</table></div>
|
3145
|
+
</div>
|
3146
|
+
<hr>
|
3147
|
+
<div class="refsect2">
|
3148
|
+
<a name="GtkTextView-paste-clipboard"></a><h3>The <code class="literal">"paste-clipboard"</code> signal</h3>
|
3149
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
3150
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3151
|
+
<p>
|
3152
|
+
The ::paste-clipboard signal is a
|
3153
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3154
|
+
which gets emitted to paste the contents of the clipboard
|
3155
|
+
into the text view.
|
3156
|
+
</p>
|
3157
|
+
<p>
|
3158
|
+
The default bindings for this signal are
|
3159
|
+
Ctrl-v and Shift-Insert.
|
3160
|
+
</p>
|
3161
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3162
|
+
<colgroup>
|
3163
|
+
<col align="left" valign="top">
|
3164
|
+
<col>
|
3165
|
+
</colgroup>
|
3166
|
+
<tbody>
|
3167
|
+
<tr>
|
3168
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
3169
|
+
<td>the object which received the signal</td>
|
3170
|
+
</tr>
|
3171
|
+
<tr>
|
3172
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3173
|
+
<td>user data set when the signal handler was connected.</td>
|
3174
|
+
</tr>
|
3175
|
+
</tbody>
|
3176
|
+
</table></div>
|
3177
|
+
</div>
|
3178
|
+
<hr>
|
3179
|
+
<div class="refsect2">
|
3180
|
+
<a name="GtkTextView-populate-popup"></a><h3>The <code class="literal">"populate-popup"</code> signal</h3>
|
3181
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
3182
|
+
<a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu,
|
3183
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
3184
|
+
<p>
|
3185
|
+
The ::populate-popup signal gets emitted before showing the
|
3186
|
+
context menu of the text view.
|
3187
|
+
</p>
|
3188
|
+
<p>
|
3189
|
+
If you need to add items to the context menu, connect
|
3190
|
+
to this signal and append your menuitems to the <em class="parameter"><code>menu</code></em>.
|
3191
|
+
</p>
|
3192
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3193
|
+
<colgroup>
|
3194
|
+
<col align="left" valign="top">
|
3195
|
+
<col>
|
3196
|
+
</colgroup>
|
3197
|
+
<tbody>
|
3198
|
+
<tr>
|
3199
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
3200
|
+
<td>The text view on which the signal is emitted</td>
|
3201
|
+
</tr>
|
3202
|
+
<tr>
|
3203
|
+
<td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
|
3204
|
+
<td>the menu that is being populated</td>
|
3205
|
+
</tr>
|
3206
|
+
<tr>
|
3207
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3208
|
+
<td>user data set when the signal handler was connected.</td>
|
3209
|
+
</tr>
|
3210
|
+
</tbody>
|
3211
|
+
</table></div>
|
3212
|
+
</div>
|
3213
|
+
<hr>
|
3214
|
+
<div class="refsect2">
|
3215
|
+
<a name="GtkTextView-preedit-changed"></a><h3>The <code class="literal">"preedit-changed"</code> signal</h3>
|
3216
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
3217
|
+
<span class="type">gchar</span> *preedit,
|
3218
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3219
|
+
<p>
|
3220
|
+
If an input method is used, the typed text will not immediately
|
3221
|
+
be committed to the buffer. So if you are interested in the text,
|
3222
|
+
connect to this signal.
|
3223
|
+
</p>
|
3224
|
+
<p>
|
3225
|
+
This signal is only emitted if the text at the given position
|
3226
|
+
is actually editable.
|
3227
|
+
</p>
|
3228
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3229
|
+
<colgroup>
|
3230
|
+
<col align="left" valign="top">
|
3231
|
+
<col>
|
3232
|
+
</colgroup>
|
3233
|
+
<tbody>
|
3234
|
+
<tr>
|
3235
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
3236
|
+
<td>the object which received the signal</td>
|
3237
|
+
</tr>
|
3238
|
+
<tr>
|
3239
|
+
<td><p><span class="term"><em class="parameter"><code>preedit</code></em> :</span></p></td>
|
3240
|
+
<td>the current preedit string</td>
|
3241
|
+
</tr>
|
3242
|
+
<tr>
|
3243
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3244
|
+
<td>user data set when the signal handler was connected.</td>
|
3245
|
+
</tr>
|
3246
|
+
</tbody>
|
3247
|
+
</table></div>
|
3248
|
+
<p class="since">Since 2.20</p>
|
3249
|
+
</div>
|
3250
|
+
<hr>
|
3251
|
+
<div class="refsect2">
|
3252
|
+
<a name="GtkTextView-select-all"></a><h3>The <code class="literal">"select-all"</code> signal</h3>
|
3253
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
3254
|
+
<span class="type">gboolean</span> select,
|
3255
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3256
|
+
<p>
|
3257
|
+
The ::select-all signal is a
|
3258
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3259
|
+
which gets emitted to select or unselect the complete
|
3260
|
+
contents of the text view.
|
3261
|
+
</p>
|
3262
|
+
<p>
|
3263
|
+
The default bindings for this signal are Ctrl-a and Ctrl-/
|
3264
|
+
for selecting and Shift-Ctrl-a and Ctrl-\ for unselecting.
|
3265
|
+
</p>
|
3266
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3267
|
+
<colgroup>
|
3268
|
+
<col align="left" valign="top">
|
3269
|
+
<col>
|
3270
|
+
</colgroup>
|
3271
|
+
<tbody>
|
3272
|
+
<tr>
|
3273
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
3274
|
+
<td>the object which received the signal</td>
|
3275
|
+
</tr>
|
3276
|
+
<tr>
|
3277
|
+
<td><p><span class="term"><em class="parameter"><code>select</code></em> :</span></p></td>
|
3278
|
+
<td>
|
3279
|
+
<code class="literal">TRUE</code> to select, <code class="literal">FALSE</code> to unselect</td>
|
3280
|
+
</tr>
|
3281
|
+
<tr>
|
3282
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3283
|
+
<td>user data set when the signal handler was connected.</td>
|
3284
|
+
</tr>
|
3285
|
+
</tbody>
|
3286
|
+
</table></div>
|
3287
|
+
</div>
|
3288
|
+
<hr>
|
3289
|
+
<div class="refsect2">
|
3290
|
+
<a name="GtkTextView-set-anchor"></a><h3>The <code class="literal">"set-anchor"</code> signal</h3>
|
3291
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
3292
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3293
|
+
<p>
|
3294
|
+
The ::set-anchor signal is a
|
3295
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3296
|
+
which gets emitted when the user initiates setting the "anchor"
|
3297
|
+
mark. The "anchor" mark gets placed at the same position as the
|
3298
|
+
"insert" mark.
|
3299
|
+
</p>
|
3300
|
+
<p>
|
3301
|
+
This signal has no default bindings.
|
3302
|
+
</p>
|
3303
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3304
|
+
<colgroup>
|
3305
|
+
<col align="left" valign="top">
|
3306
|
+
<col>
|
3307
|
+
</colgroup>
|
3308
|
+
<tbody>
|
3309
|
+
<tr>
|
3310
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
3311
|
+
<td>the object which received the signal</td>
|
3312
|
+
</tr>
|
3313
|
+
<tr>
|
3314
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3315
|
+
<td>user data set when the signal handler was connected.</td>
|
3316
|
+
</tr>
|
3317
|
+
</tbody>
|
3318
|
+
</table></div>
|
3319
|
+
</div>
|
3320
|
+
<hr>
|
3321
|
+
<div class="refsect2">
|
3322
|
+
<a name="GtkTextView-toggle-cursor-visible"></a><h3>The <code class="literal">"toggle-cursor-visible"</code> signal</h3>
|
3323
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
3324
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3325
|
+
<p>
|
3326
|
+
The ::toggle-cursor-visible signal is a
|
3327
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3328
|
+
which gets emitted to toggle the visibility of the cursor.
|
3329
|
+
</p>
|
3330
|
+
<p>
|
3331
|
+
The default binding for this signal is F7.
|
3332
|
+
</p>
|
3333
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3334
|
+
<colgroup>
|
3335
|
+
<col align="left" valign="top">
|
3336
|
+
<col>
|
3337
|
+
</colgroup>
|
3338
|
+
<tbody>
|
3339
|
+
<tr>
|
3340
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
3341
|
+
<td>the object which received the signal</td>
|
3342
|
+
</tr>
|
3343
|
+
<tr>
|
3344
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3345
|
+
<td>user data set when the signal handler was connected.</td>
|
3346
|
+
</tr>
|
3347
|
+
</tbody>
|
3348
|
+
</table></div>
|
3349
|
+
</div>
|
3350
|
+
<hr>
|
3351
|
+
<div class="refsect2">
|
3352
|
+
<a name="GtkTextView-toggle-overwrite"></a><h3>The <code class="literal">"toggle-overwrite"</code> signal</h3>
|
3353
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a> *text_view,
|
3354
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3355
|
+
<p>
|
3356
|
+
The ::toggle-overwrite signal is a
|
3357
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3358
|
+
which gets emitted to toggle the overwrite mode of the text view.
|
3359
|
+
</p>
|
3360
|
+
<p>
|
3361
|
+
The default bindings for this signal is Insert.
|
3362
|
+
</p>
|
3363
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3364
|
+
<colgroup>
|
3365
|
+
<col align="left" valign="top">
|
3366
|
+
<col>
|
3367
|
+
</colgroup>
|
3368
|
+
<tbody>
|
3369
|
+
<tr>
|
3370
|
+
<td><p><span class="term"><em class="parameter"><code>text_view</code></em> :</span></p></td>
|
3371
|
+
<td>the object which received the signal</td>
|
3372
|
+
</tr>
|
3373
|
+
<tr>
|
3374
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3375
|
+
<td>user data set when the signal handler was connected.</td>
|
3376
|
+
</tr>
|
3377
|
+
</tbody>
|
3378
|
+
</table></div>
|
3379
|
+
</div>
|
3380
|
+
</div>
|
3381
|
+
<div class="refsect1">
|
3382
|
+
<a name="GtkTextView.see-also"></a><h2>See Also</h2>
|
3383
|
+
<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>, <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>
|
3384
|
+
</div>
|
3385
|
+
</div>
|
3386
|
+
<div class="footer">
|
3387
|
+
<hr>
|
3388
|
+
Generated by GTK-Doc V1.18.1</div>
|
3389
|
+
</body>
|
3390
|
+
</html>
|