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,342 @@
|
|
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>GtkTextMark</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="GtkTextIter.html" title="GtkTextIter">
|
10
|
+
<link rel="next" href="GtkTextBuffer.html" title="GtkTextBuffer">
|
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="GtkTextIter.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="GtkTextBuffer.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="#GtkTextMark.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#GtkTextMark.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#GtkTextMark.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
|
|
30
|
+
<a href="#GtkTextMark.properties" class="shortcut">Properties</a>
|
31
|
+
</td></tr>
|
32
|
+
</table>
|
33
|
+
<div class="refentry">
|
34
|
+
<a name="GtkTextMark"></a><div class="titlepage"></div>
|
35
|
+
<div class="refnamediv"><table width="100%"><tr>
|
36
|
+
<td valign="top">
|
37
|
+
<h2><span class="refentrytitle"><a name="GtkTextMark.top_of_page"></a>GtkTextMark</span></h2>
|
38
|
+
<p>GtkTextMark — A position in the buffer preserved across buffer modifications</p>
|
39
|
+
</td>
|
40
|
+
<td valign="top" align="right"></td>
|
41
|
+
</tr></table></div>
|
42
|
+
<div class="refsynopsisdiv">
|
43
|
+
<a name="GtkTextMark.synopsis"></a><h2>Synopsis</h2>
|
44
|
+
<pre class="synopsis">
|
45
|
+
#include <gtk/gtk.h>
|
46
|
+
|
47
|
+
struct <a class="link" href="GtkTextMark.html#GtkTextMark-struct" title="struct GtkTextMark">GtkTextMark</a>;
|
48
|
+
<a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * <a class="link" href="GtkTextMark.html#gtk-text-mark-new" title="gtk_text_mark_new ()">gtk_text_mark_new</a> (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>,
|
49
|
+
<em class="parameter"><code><span class="type">gboolean</span> left_gravity</code></em>);
|
50
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextMark.html#gtk-text-mark-set-visible" title="gtk_text_mark_set_visible ()">gtk_text_mark_set_visible</a> (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
|
51
|
+
<em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);
|
52
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextMark.html#gtk-text-mark-get-visible" title="gtk_text_mark_get_visible ()">gtk_text_mark_get_visible</a> (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
53
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextMark.html#gtk-text-mark-get-deleted" title="gtk_text_mark_get_deleted ()">gtk_text_mark_get_deleted</a> (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
54
|
+
const <span class="returnvalue">gchar</span> * <a class="link" href="GtkTextMark.html#gtk-text-mark-get-name" title="gtk_text_mark_get_name ()">gtk_text_mark_get_name</a> (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
55
|
+
<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * <a class="link" href="GtkTextMark.html#gtk-text-mark-get-buffer" title="gtk_text_mark_get_buffer ()">gtk_text_mark_get_buffer</a> (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
56
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextMark.html#gtk-text-mark-get-left-gravity" title="gtk_text_mark_get_left_gravity ()">gtk_text_mark_get_left_gravity</a> (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
57
|
+
</pre>
|
58
|
+
</div>
|
59
|
+
<div class="refsect1">
|
60
|
+
<a name="GtkTextMark.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
61
|
+
<pre class="synopsis">
|
62
|
+
GObject
|
63
|
+
+----GtkTextMark
|
64
|
+
</pre>
|
65
|
+
</div>
|
66
|
+
<div class="refsect1">
|
67
|
+
<a name="GtkTextMark.properties"></a><h2>Properties</h2>
|
68
|
+
<pre class="synopsis">
|
69
|
+
"<a class="link" href="GtkTextMark.html#GtkTextMark--left-gravity" title='The "left-gravity" property'>left-gravity</a>" <span class="type">gboolean</span> : Read / Write / Construct Only
|
70
|
+
"<a class="link" href="GtkTextMark.html#GtkTextMark--name" title='The "name" property'>name</a>" <span class="type">gchar</span>* : Read / Write / Construct Only
|
71
|
+
</pre>
|
72
|
+
</div>
|
73
|
+
<div class="refsect1">
|
74
|
+
<a name="GtkTextMark.description"></a><h2>Description</h2>
|
75
|
+
<p>
|
76
|
+
You may wish to begin by reading the <a class="link" href="TextWidget.html" title="Text Widget Overview">text widget
|
77
|
+
conceptual overview</a> which gives an overview of all the objects and data
|
78
|
+
types related to the text widget and how they work together.
|
79
|
+
</p>
|
80
|
+
<p>
|
81
|
+
A <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> is like a bookmark in a text buffer; it preserves a position in
|
82
|
+
the text. You can convert the mark to an iterator using
|
83
|
+
<a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-mark" title="gtk_text_buffer_get_iter_at_mark ()"><code class="function">gtk_text_buffer_get_iter_at_mark()</code></a>. Unlike iterators, marks remain valid across
|
84
|
+
buffer mutations, because their behavior is defined when text is inserted or
|
85
|
+
deleted. When text containing a mark is deleted, the mark remains in the
|
86
|
+
position originally occupied by the deleted text. When text is inserted at a
|
87
|
+
mark, a mark with <em class="firstterm">left gravity</em> will be moved to the
|
88
|
+
beginning of the newly-inserted text, and a mark with <em class="firstterm">right
|
89
|
+
gravity</em> will be moved to the end.
|
90
|
+
</p>
|
91
|
+
<p>
|
92
|
+
<a href="#ftn.idm140520377505088" class="footnote" name="idm140520377505088"><sup class="footnote">[3]</sup></a>
|
93
|
+
</p>
|
94
|
+
<p>
|
95
|
+
Marks are reference counted, but the reference count only controls the validity
|
96
|
+
of the memory; marks can be deleted from the buffer at any time with
|
97
|
+
<a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-mark" title="gtk_text_buffer_delete_mark ()"><code class="function">gtk_text_buffer_delete_mark()</code></a>. Once deleted from the buffer, a mark is
|
98
|
+
essentially useless.
|
99
|
+
</p>
|
100
|
+
<p>
|
101
|
+
Marks optionally have names; these can be convenient to avoid passing the
|
102
|
+
<a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> object around.
|
103
|
+
</p>
|
104
|
+
<p>
|
105
|
+
Marks are typically created using the <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-mark" title="gtk_text_buffer_create_mark ()"><code class="function">gtk_text_buffer_create_mark()</code></a> function.
|
106
|
+
</p>
|
107
|
+
</div>
|
108
|
+
<div class="refsect1">
|
109
|
+
<a name="GtkTextMark.details"></a><h2>Details</h2>
|
110
|
+
<div class="refsect2">
|
111
|
+
<a name="GtkTextMark-struct"></a><h3>struct GtkTextMark</h3>
|
112
|
+
<pre class="programlisting">struct GtkTextMark;</pre>
|
113
|
+
</div>
|
114
|
+
<hr>
|
115
|
+
<div class="refsect2">
|
116
|
+
<a name="gtk-text-mark-new"></a><h3>gtk_text_mark_new ()</h3>
|
117
|
+
<pre class="programlisting"><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * gtk_text_mark_new (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>,
|
118
|
+
<em class="parameter"><code><span class="type">gboolean</span> left_gravity</code></em>);</pre>
|
119
|
+
<p>
|
120
|
+
Creates a text mark. Add it to a buffer using <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-add-mark" title="gtk_text_buffer_add_mark ()"><code class="function">gtk_text_buffer_add_mark()</code></a>.
|
121
|
+
If <em class="parameter"><code>name</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 mark is anonymous; otherwise, the mark can be
|
122
|
+
retrieved by name using <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-mark" title="gtk_text_buffer_get_mark ()"><code class="function">gtk_text_buffer_get_mark()</code></a>. If a mark has left
|
123
|
+
gravity, and text is inserted at the mark's current location, the mark
|
124
|
+
will be moved to the left of the newly-inserted text. If the mark has
|
125
|
+
right gravity (<em class="parameter"><code>left_gravity</code></em> = <code class="literal">FALSE</code>), the mark will end up on the
|
126
|
+
right of newly-inserted text. The standard left-to-right cursor is a
|
127
|
+
mark with right gravity (when you type, the cursor stays on the right
|
128
|
+
side of the text you're typing).
|
129
|
+
</p>
|
130
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
131
|
+
<colgroup>
|
132
|
+
<col align="left" valign="top">
|
133
|
+
<col>
|
134
|
+
</colgroup>
|
135
|
+
<tbody>
|
136
|
+
<tr>
|
137
|
+
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
138
|
+
<td>mark name 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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
139
|
+
</td>
|
140
|
+
</tr>
|
141
|
+
<tr>
|
142
|
+
<td><p><span class="term"><em class="parameter"><code>left_gravity</code></em> :</span></p></td>
|
143
|
+
<td>whether the mark should have left gravity</td>
|
144
|
+
</tr>
|
145
|
+
<tr>
|
146
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
147
|
+
<td>new <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
|
148
|
+
</td>
|
149
|
+
</tr>
|
150
|
+
</tbody>
|
151
|
+
</table></div>
|
152
|
+
<p class="since">Since 2.12</p>
|
153
|
+
</div>
|
154
|
+
<hr>
|
155
|
+
<div class="refsect2">
|
156
|
+
<a name="gtk-text-mark-set-visible"></a><h3>gtk_text_mark_set_visible ()</h3>
|
157
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_mark_set_visible (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
|
158
|
+
<em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);</pre>
|
159
|
+
<p>
|
160
|
+
Sets the visibility of <em class="parameter"><code>mark</code></em>; the insertion point is normally
|
161
|
+
visible, i.e. you can see it as a vertical bar. Also, the text
|
162
|
+
widget uses a visible mark to indicate where a drop will occur when
|
163
|
+
dragging-and-dropping text. Most other marks are not visible.
|
164
|
+
Marks are not visible by default.
|
165
|
+
</p>
|
166
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
167
|
+
<colgroup>
|
168
|
+
<col align="left" valign="top">
|
169
|
+
<col>
|
170
|
+
</colgroup>
|
171
|
+
<tbody>
|
172
|
+
<tr>
|
173
|
+
<td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
|
174
|
+
<td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
|
175
|
+
</td>
|
176
|
+
</tr>
|
177
|
+
<tr>
|
178
|
+
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
179
|
+
<td>visibility of mark</td>
|
180
|
+
</tr>
|
181
|
+
</tbody>
|
182
|
+
</table></div>
|
183
|
+
</div>
|
184
|
+
<hr>
|
185
|
+
<div class="refsect2">
|
186
|
+
<a name="gtk-text-mark-get-visible"></a><h3>gtk_text_mark_get_visible ()</h3>
|
187
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_mark_get_visible (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
188
|
+
<p>
|
189
|
+
Returns <code class="literal">TRUE</code> if the mark is visible (i.e. a cursor is displayed
|
190
|
+
for it).
|
191
|
+
</p>
|
192
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
193
|
+
<colgroup>
|
194
|
+
<col align="left" valign="top">
|
195
|
+
<col>
|
196
|
+
</colgroup>
|
197
|
+
<tbody>
|
198
|
+
<tr>
|
199
|
+
<td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
|
200
|
+
<td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
|
201
|
+
</td>
|
202
|
+
</tr>
|
203
|
+
<tr>
|
204
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
205
|
+
<td>
|
206
|
+
<code class="literal">TRUE</code> if visible</td>
|
207
|
+
</tr>
|
208
|
+
</tbody>
|
209
|
+
</table></div>
|
210
|
+
</div>
|
211
|
+
<hr>
|
212
|
+
<div class="refsect2">
|
213
|
+
<a name="gtk-text-mark-get-deleted"></a><h3>gtk_text_mark_get_deleted ()</h3>
|
214
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_mark_get_deleted (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
215
|
+
<p>
|
216
|
+
Returns <code class="literal">TRUE</code> if the mark has been removed from its buffer
|
217
|
+
with <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-mark" title="gtk_text_buffer_delete_mark ()"><code class="function">gtk_text_buffer_delete_mark()</code></a>. See <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-add-mark" title="gtk_text_buffer_add_mark ()"><code class="function">gtk_text_buffer_add_mark()</code></a>
|
218
|
+
for a way to add it to a buffer again.
|
219
|
+
</p>
|
220
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
221
|
+
<colgroup>
|
222
|
+
<col align="left" valign="top">
|
223
|
+
<col>
|
224
|
+
</colgroup>
|
225
|
+
<tbody>
|
226
|
+
<tr>
|
227
|
+
<td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
|
228
|
+
<td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
|
229
|
+
</td>
|
230
|
+
</tr>
|
231
|
+
<tr>
|
232
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
233
|
+
<td>whether the mark is deleted</td>
|
234
|
+
</tr>
|
235
|
+
</tbody>
|
236
|
+
</table></div>
|
237
|
+
</div>
|
238
|
+
<hr>
|
239
|
+
<div class="refsect2">
|
240
|
+
<a name="gtk-text-mark-get-name"></a><h3>gtk_text_mark_get_name ()</h3>
|
241
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> * gtk_text_mark_get_name (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
242
|
+
<p>
|
243
|
+
Returns the mark name; returns NULL for anonymous marks.
|
244
|
+
</p>
|
245
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
246
|
+
<colgroup>
|
247
|
+
<col align="left" valign="top">
|
248
|
+
<col>
|
249
|
+
</colgroup>
|
250
|
+
<tbody>
|
251
|
+
<tr>
|
252
|
+
<td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
|
253
|
+
<td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
|
254
|
+
</td>
|
255
|
+
</tr>
|
256
|
+
<tr>
|
257
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
258
|
+
<td>mark name</td>
|
259
|
+
</tr>
|
260
|
+
</tbody>
|
261
|
+
</table></div>
|
262
|
+
</div>
|
263
|
+
<hr>
|
264
|
+
<div class="refsect2">
|
265
|
+
<a name="gtk-text-mark-get-buffer"></a><h3>gtk_text_mark_get_buffer ()</h3>
|
266
|
+
<pre class="programlisting"><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * gtk_text_mark_get_buffer (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
267
|
+
<p>
|
268
|
+
Gets the buffer this mark is located inside,
|
269
|
+
or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if the mark is deleted.
|
270
|
+
</p>
|
271
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
272
|
+
<colgroup>
|
273
|
+
<col align="left" valign="top">
|
274
|
+
<col>
|
275
|
+
</colgroup>
|
276
|
+
<tbody>
|
277
|
+
<tr>
|
278
|
+
<td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
|
279
|
+
<td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
|
280
|
+
</td>
|
281
|
+
</tr>
|
282
|
+
<tr>
|
283
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
284
|
+
<td>the mark's <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>
|
285
|
+
</td>
|
286
|
+
</tr>
|
287
|
+
</tbody>
|
288
|
+
</table></div>
|
289
|
+
</div>
|
290
|
+
<hr>
|
291
|
+
<div class="refsect2">
|
292
|
+
<a name="gtk-text-mark-get-left-gravity"></a><h3>gtk_text_mark_get_left_gravity ()</h3>
|
293
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_mark_get_left_gravity (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
294
|
+
<p>
|
295
|
+
Determines whether the mark has left gravity.
|
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>mark</code></em> :</span></p></td>
|
305
|
+
<td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</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>
|
311
|
+
<code class="literal">TRUE</code> if the mark has left gravity, <code class="literal">FALSE</code> otherwise</td>
|
312
|
+
</tr>
|
313
|
+
</tbody>
|
314
|
+
</table></div>
|
315
|
+
</div>
|
316
|
+
</div>
|
317
|
+
<div class="refsect1">
|
318
|
+
<a name="GtkTextMark.property-details"></a><h2>Property Details</h2>
|
319
|
+
<div class="refsect2">
|
320
|
+
<a name="GtkTextMark--left-gravity"></a><h3>The <code class="literal">"left-gravity"</code> property</h3>
|
321
|
+
<pre class="programlisting"> "left-gravity" <span class="type">gboolean</span> : Read / Write / Construct Only</pre>
|
322
|
+
<p>Whether the mark has left gravity.</p>
|
323
|
+
<p>Default value: FALSE</p>
|
324
|
+
</div>
|
325
|
+
<hr>
|
326
|
+
<div class="refsect2">
|
327
|
+
<a name="GtkTextMark--name"></a><h3>The <code class="literal">"name"</code> property</h3>
|
328
|
+
<pre class="programlisting"> "name" <span class="type">gchar</span>* : Read / Write / Construct Only</pre>
|
329
|
+
<p>Mark name.</p>
|
330
|
+
<p>Default value: NULL</p>
|
331
|
+
</div>
|
332
|
+
</div>
|
333
|
+
<div class="footnotes">
|
334
|
+
<br><hr style="width:100; text-align:left;margin-left: 0">
|
335
|
+
<div id="ftn.idm140520377505088" class="footnote"></div>
|
336
|
+
</div>
|
337
|
+
</div>
|
338
|
+
<div class="footer">
|
339
|
+
<hr>
|
340
|
+
Generated by GTK-Doc V1.18.1</div>
|
341
|
+
</body>
|
342
|
+
</html>
|
@@ -0,0 +1,1124 @@
|
|
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>GtkTextTag</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="GtkTextBuffer.html" title="GtkTextBuffer">
|
10
|
+
<link rel="next" href="GtkTextTagTable.html" title="GtkTextTagTable">
|
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="GtkTextBuffer.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="GtkTextTagTable.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="#GtkTextTag.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#GtkTextTag.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#GtkTextTag.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
|
|
30
|
+
<a href="#GtkTextTag.properties" class="shortcut">Properties</a>
|
31
|
+
|
|
32
|
+
<a href="#GtkTextTag.signals" class="shortcut">Signals</a>
|
33
|
+
</td></tr>
|
34
|
+
</table>
|
35
|
+
<div class="refentry">
|
36
|
+
<a name="GtkTextTag"></a><div class="titlepage"></div>
|
37
|
+
<div class="refnamediv"><table width="100%"><tr>
|
38
|
+
<td valign="top">
|
39
|
+
<h2><span class="refentrytitle"><a name="GtkTextTag.top_of_page"></a>GtkTextTag</span></h2>
|
40
|
+
<p>GtkTextTag — A tag that can be applied to text in a GtkTextBuffer</p>
|
41
|
+
</td>
|
42
|
+
<td valign="top" align="right"></td>
|
43
|
+
</tr></table></div>
|
44
|
+
<div class="refsynopsisdiv">
|
45
|
+
<a name="GtkTextTag.synopsis"></a><h2>Synopsis</h2>
|
46
|
+
<pre class="synopsis">
|
47
|
+
#include <gtk/gtk.h>
|
48
|
+
|
49
|
+
struct <a class="link" href="GtkTextTag.html#GtkTextTag-struct" title="struct GtkTextTag">GtkTextTag</a>;
|
50
|
+
enum <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode">GtkWrapMode</a>;
|
51
|
+
struct <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes">GtkTextAttributes</a>;
|
52
|
+
<a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="returnvalue">GtkTextTag</span></a> * <a class="link" href="GtkTextTag.html#gtk-text-tag-new" title="gtk_text_tag_new ()">gtk_text_tag_new</a> (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);
|
53
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkTextTag.html#gtk-text-tag-get-priority" title="gtk_text_tag_get_priority ()">gtk_text_tag_get_priority</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);
|
54
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextTag.html#gtk-text-tag-set-priority" title="gtk_text_tag_set_priority ()">gtk_text_tag_set_priority</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
55
|
+
<em class="parameter"><code><span class="type">gint</span> priority</code></em>);
|
56
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkTextTag.html#gtk-text-tag-event" title="gtk_text_tag_event ()">gtk_text_tag_event</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
57
|
+
<em class="parameter"><code><span class="type">GObject</span> *event_object</code></em>,
|
58
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event</code></em>,
|
59
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
|
60
|
+
struct <a class="link" href="GtkTextTag.html#GtkTextAppearance" title="struct GtkTextAppearance">GtkTextAppearance</a>;
|
61
|
+
<a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * <a class="link" href="GtkTextTag.html#gtk-text-attributes-new" title="gtk_text_attributes_new ()">gtk_text_attributes_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
62
|
+
<a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * <a class="link" href="GtkTextTag.html#gtk-text-attributes-copy" title="gtk_text_attributes_copy ()">gtk_text_attributes_copy</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *src</code></em>);
|
63
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextTag.html#gtk-text-attributes-copy-values" title="gtk_text_attributes_copy_values ()">gtk_text_attributes_copy_values</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *src</code></em>,
|
64
|
+
<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *dest</code></em>);
|
65
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextTag.html#gtk-text-attributes-unref" title="gtk_text_attributes_unref ()">gtk_text_attributes_unref</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);
|
66
|
+
<a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * <a class="link" href="GtkTextTag.html#gtk-text-attributes-ref" title="gtk_text_attributes_ref ()">gtk_text_attributes_ref</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);
|
67
|
+
</pre>
|
68
|
+
</div>
|
69
|
+
<div class="refsect1">
|
70
|
+
<a name="GtkTextTag.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
71
|
+
<pre class="synopsis">
|
72
|
+
GObject
|
73
|
+
+----GtkTextTag
|
74
|
+
</pre>
|
75
|
+
</div>
|
76
|
+
<div class="refsect1">
|
77
|
+
<a name="GtkTextTag.properties"></a><h2>Properties</h2>
|
78
|
+
<pre class="synopsis">
|
79
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--accumulative-margin" title='The "accumulative-margin" property'>accumulative-margin</a>" <span class="type">gboolean</span> : Read / Write
|
80
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--background" title='The "background" property'>background</a>" <span class="type">gchar</span>* : Write
|
81
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--background-full-height" title='The "background-full-height" property'>background-full-height</a>" <span class="type">gboolean</span> : Read / Write
|
82
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--background-full-height-set" title='The "background-full-height-set" property'>background-full-height-set</a>" <span class="type">gboolean</span> : Read / Write
|
83
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--background-gdk" title='The "background-gdk" property'>background-gdk</a>" <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read / Write
|
84
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--background-rgba" title='The "background-rgba" property'>background-rgba</a>" <a href="../gdk3/gdk3-RGBA-Colors.html#GdkRGBA"><span class="type">GdkRGBA</span></a>* : Read / Write
|
85
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--background-set" title='The "background-set" property'>background-set</a>" <span class="type">gboolean</span> : Read / Write
|
86
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--direction" title='The "direction" property'>direction</a>" <a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="type">GtkTextDirection</span></a> : Read / Write
|
87
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--editable" title='The "editable" property'>editable</a>" <span class="type">gboolean</span> : Read / Write
|
88
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--editable-set" title='The "editable-set" property'>editable-set</a>" <span class="type">gboolean</span> : Read / Write
|
89
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--family" title='The "family" property'>family</a>" <span class="type">gchar</span>* : Read / Write
|
90
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--family-set" title='The "family-set" property'>family-set</a>" <span class="type">gboolean</span> : Read / Write
|
91
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--font" title='The "font" property'>font</a>" <span class="type">gchar</span>* : Read / Write
|
92
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--font-desc" title='The "font-desc" property'>font-desc</a>" <span class="type">PangoFontDescription</span>* : Read / Write
|
93
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--foreground" title='The "foreground" property'>foreground</a>" <span class="type">gchar</span>* : Write
|
94
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--foreground-gdk" title='The "foreground-gdk" property'>foreground-gdk</a>" <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read / Write
|
95
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--foreground-rgba" title='The "foreground-rgba" property'>foreground-rgba</a>" <a href="../gdk3/gdk3-RGBA-Colors.html#GdkRGBA"><span class="type">GdkRGBA</span></a>* : Read / Write
|
96
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--foreground-set" title='The "foreground-set" property'>foreground-set</a>" <span class="type">gboolean</span> : Read / Write
|
97
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--indent" title='The "indent" property'>indent</a>" <span class="type">gint</span> : Read / Write
|
98
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--indent-set" title='The "indent-set" property'>indent-set</a>" <span class="type">gboolean</span> : Read / Write
|
99
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--invisible" title='The "invisible" property'>invisible</a>" <span class="type">gboolean</span> : Read / Write
|
100
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--invisible-set" title='The "invisible-set" property'>invisible-set</a>" <span class="type">gboolean</span> : Read / Write
|
101
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--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
|
102
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--justification-set" title='The "justification-set" property'>justification-set</a>" <span class="type">gboolean</span> : Read / Write
|
103
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--language" title='The "language" property'>language</a>" <span class="type">gchar</span>* : Read / Write
|
104
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--language-set" title='The "language-set" property'>language-set</a>" <span class="type">gboolean</span> : Read / Write
|
105
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--left-margin" title='The "left-margin" property'>left-margin</a>" <span class="type">gint</span> : Read / Write
|
106
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--left-margin-set" title='The "left-margin-set" property'>left-margin-set</a>" <span class="type">gboolean</span> : Read / Write
|
107
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--name" title='The "name" property'>name</a>" <span class="type">gchar</span>* : Read / Write / Construct Only
|
108
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--paragraph-background" title='The "paragraph-background" property'>paragraph-background</a>" <span class="type">gchar</span>* : Write
|
109
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--paragraph-background-gdk" title='The "paragraph-background-gdk" property'>paragraph-background-gdk</a>" <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read / Write
|
110
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--paragraph-background-rgba" title='The "paragraph-background-rgba" property'>paragraph-background-rgba</a>" <a href="../gdk3/gdk3-RGBA-Colors.html#GdkRGBA"><span class="type">GdkRGBA</span></a>* : Read / Write
|
111
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--paragraph-background-set" title='The "paragraph-background-set" property'>paragraph-background-set</a>" <span class="type">gboolean</span> : Read / Write
|
112
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--pixels-above-lines" title='The "pixels-above-lines" property'>pixels-above-lines</a>" <span class="type">gint</span> : Read / Write
|
113
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--pixels-above-lines-set" title='The "pixels-above-lines-set" property'>pixels-above-lines-set</a>" <span class="type">gboolean</span> : Read / Write
|
114
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--pixels-below-lines" title='The "pixels-below-lines" property'>pixels-below-lines</a>" <span class="type">gint</span> : Read / Write
|
115
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--pixels-below-lines-set" title='The "pixels-below-lines-set" property'>pixels-below-lines-set</a>" <span class="type">gboolean</span> : Read / Write
|
116
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--pixels-inside-wrap" title='The "pixels-inside-wrap" property'>pixels-inside-wrap</a>" <span class="type">gint</span> : Read / Write
|
117
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--pixels-inside-wrap-set" title='The "pixels-inside-wrap-set" property'>pixels-inside-wrap-set</a>" <span class="type">gboolean</span> : Read / Write
|
118
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--right-margin" title='The "right-margin" property'>right-margin</a>" <span class="type">gint</span> : Read / Write
|
119
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--right-margin-set" title='The "right-margin-set" property'>right-margin-set</a>" <span class="type">gboolean</span> : Read / Write
|
120
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--rise" title='The "rise" property'>rise</a>" <span class="type">gint</span> : Read / Write
|
121
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--rise-set" title='The "rise-set" property'>rise-set</a>" <span class="type">gboolean</span> : Read / Write
|
122
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--scale" title='The "scale" property'>scale</a>" <span class="type">gdouble</span> : Read / Write
|
123
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--scale-set" title='The "scale-set" property'>scale-set</a>" <span class="type">gboolean</span> : Read / Write
|
124
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--size" title='The "size" property'>size</a>" <span class="type">gint</span> : Read / Write
|
125
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--size-points" title='The "size-points" property'>size-points</a>" <span class="type">gdouble</span> : Read / Write
|
126
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--size-set" title='The "size-set" property'>size-set</a>" <span class="type">gboolean</span> : Read / Write
|
127
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--stretch" title='The "stretch" property'>stretch</a>" <span class="type">PangoStretch</span> : Read / Write
|
128
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--stretch-set" title='The "stretch-set" property'>stretch-set</a>" <span class="type">gboolean</span> : Read / Write
|
129
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--strikethrough" title='The "strikethrough" property'>strikethrough</a>" <span class="type">gboolean</span> : Read / Write
|
130
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--strikethrough-set" title='The "strikethrough-set" property'>strikethrough-set</a>" <span class="type">gboolean</span> : Read / Write
|
131
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--style" title='The "style" property'>style</a>" <span class="type">PangoStyle</span> : Read / Write
|
132
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--style-set" title='The "style-set" property'>style-set</a>" <span class="type">gboolean</span> : Read / Write
|
133
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--tabs" title='The "tabs" property'>tabs</a>" <span class="type">PangoTabArray</span>* : Read / Write
|
134
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--tabs-set" title='The "tabs-set" property'>tabs-set</a>" <span class="type">gboolean</span> : Read / Write
|
135
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--underline" title='The "underline" property'>underline</a>" <span class="type">PangoUnderline</span> : Read / Write
|
136
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--underline-set" title='The "underline-set" property'>underline-set</a>" <span class="type">gboolean</span> : Read / Write
|
137
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--variant" title='The "variant" property'>variant</a>" <span class="type">PangoVariant</span> : Read / Write
|
138
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--variant-set" title='The "variant-set" property'>variant-set</a>" <span class="type">gboolean</span> : Read / Write
|
139
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--weight" title='The "weight" property'>weight</a>" <span class="type">gint</span> : Read / Write
|
140
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--weight-set" title='The "weight-set" property'>weight-set</a>" <span class="type">gboolean</span> : Read / Write
|
141
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--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
|
142
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--wrap-mode-set" title='The "wrap-mode-set" property'>wrap-mode-set</a>" <span class="type">gboolean</span> : Read / Write
|
143
|
+
</pre>
|
144
|
+
</div>
|
145
|
+
<div class="refsect1">
|
146
|
+
<a name="GtkTextTag.signals"></a><h2>Signals</h2>
|
147
|
+
<pre class="synopsis">
|
148
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag-event" title='The "event" signal'>event</a>" : <code class="literal">Run Last</code>
|
149
|
+
</pre>
|
150
|
+
</div>
|
151
|
+
<div class="refsect1">
|
152
|
+
<a name="GtkTextTag.description"></a><h2>Description</h2>
|
153
|
+
<p>
|
154
|
+
You may wish to begin by reading the <a class="link" href="TextWidget.html" title="Text Widget Overview">text widget
|
155
|
+
conceptual overview</a> which gives an overview of all the objects and
|
156
|
+
data types related to the text widget and how they work together.
|
157
|
+
</p>
|
158
|
+
<p>
|
159
|
+
Tags should be in the <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> for a given <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
160
|
+
before using them with that buffer.
|
161
|
+
</p>
|
162
|
+
<p>
|
163
|
+
<a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-tag" title="gtk_text_buffer_create_tag ()"><code class="function">gtk_text_buffer_create_tag()</code></a> is the best way to create tags.
|
164
|
+
See <span class="application">gtk3-demo</span> for numerous examples.
|
165
|
+
</p>
|
166
|
+
<p>
|
167
|
+
For each property of <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>, there is a "set" property, e.g.
|
168
|
+
"font-set" corresponds to "font". These "set" properties reflect
|
169
|
+
whether a property has been set or not.
|
170
|
+
You should not set them independently.
|
171
|
+
</p>
|
172
|
+
</div>
|
173
|
+
<div class="refsect1">
|
174
|
+
<a name="GtkTextTag.details"></a><h2>Details</h2>
|
175
|
+
<div class="refsect2">
|
176
|
+
<a name="GtkTextTag-struct"></a><h3>struct GtkTextTag</h3>
|
177
|
+
<pre class="programlisting">struct GtkTextTag;</pre>
|
178
|
+
</div>
|
179
|
+
<hr>
|
180
|
+
<div class="refsect2">
|
181
|
+
<a name="GtkWrapMode"></a><h3>enum GtkWrapMode</h3>
|
182
|
+
<pre class="programlisting">typedef enum {
|
183
|
+
GTK_WRAP_NONE,
|
184
|
+
GTK_WRAP_CHAR,
|
185
|
+
GTK_WRAP_WORD,
|
186
|
+
GTK_WRAP_WORD_CHAR
|
187
|
+
} GtkWrapMode;
|
188
|
+
</pre>
|
189
|
+
<p>
|
190
|
+
Describes a type of line wrapping.
|
191
|
+
</p>
|
192
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
193
|
+
<colgroup>
|
194
|
+
<col align="left" valign="top">
|
195
|
+
<col>
|
196
|
+
</colgroup>
|
197
|
+
<tbody>
|
198
|
+
<tr>
|
199
|
+
<td><p><a name="GTK-WRAP-NONE:CAPS"></a><span class="term"><code class="literal">GTK_WRAP_NONE</code></span></p></td>
|
200
|
+
<td>do not wrap lines; just make the text area wider
|
201
|
+
</td>
|
202
|
+
</tr>
|
203
|
+
<tr>
|
204
|
+
<td><p><a name="GTK-WRAP-CHAR:CAPS"></a><span class="term"><code class="literal">GTK_WRAP_CHAR</code></span></p></td>
|
205
|
+
<td>wrap text, breaking lines anywhere the cursor can
|
206
|
+
appear (between characters, usually - if you want to be technical,
|
207
|
+
between graphemes, see <code class="function">pango_get_log_attrs()</code>)
|
208
|
+
</td>
|
209
|
+
</tr>
|
210
|
+
<tr>
|
211
|
+
<td><p><a name="GTK-WRAP-WORD:CAPS"></a><span class="term"><code class="literal">GTK_WRAP_WORD</code></span></p></td>
|
212
|
+
<td>wrap text, breaking lines in between words
|
213
|
+
</td>
|
214
|
+
</tr>
|
215
|
+
<tr>
|
216
|
+
<td><p><a name="GTK-WRAP-WORD-CHAR:CAPS"></a><span class="term"><code class="literal">GTK_WRAP_WORD_CHAR</code></span></p></td>
|
217
|
+
<td>wrap text, breaking lines in between words, or if
|
218
|
+
that is not enough, also between graphemes
|
219
|
+
</td>
|
220
|
+
</tr>
|
221
|
+
</tbody>
|
222
|
+
</table></div>
|
223
|
+
</div>
|
224
|
+
<hr>
|
225
|
+
<div class="refsect2">
|
226
|
+
<a name="GtkTextAttributes"></a><h3>struct GtkTextAttributes</h3>
|
227
|
+
<pre class="programlisting">struct GtkTextAttributes {
|
228
|
+
GtkTextAppearance appearance;
|
229
|
+
|
230
|
+
GtkJustification justification;
|
231
|
+
GtkTextDirection direction;
|
232
|
+
|
233
|
+
/* Individual chunks of this can be set/unset as a group */
|
234
|
+
PangoFontDescription *font;
|
235
|
+
|
236
|
+
gdouble font_scale;
|
237
|
+
|
238
|
+
gint left_margin;
|
239
|
+
gint right_margin;
|
240
|
+
gint indent;
|
241
|
+
|
242
|
+
gint pixels_above_lines;
|
243
|
+
gint pixels_below_lines;
|
244
|
+
gint pixels_inside_wrap;
|
245
|
+
|
246
|
+
PangoTabArray *tabs;
|
247
|
+
|
248
|
+
GtkWrapMode wrap_mode; /* How to handle wrap-around for this tag.
|
249
|
+
* Must be GTK_WRAPMODE_CHAR,
|
250
|
+
* GTK_WRAPMODE_NONE, GTK_WRAPMODE_WORD
|
251
|
+
*/
|
252
|
+
|
253
|
+
PangoLanguage *language;
|
254
|
+
|
255
|
+
/* hide the text */
|
256
|
+
guint invisible : 1;
|
257
|
+
|
258
|
+
/* Background is fit to full line height rather than
|
259
|
+
* baseline +/- ascent/descent (font height)
|
260
|
+
*/
|
261
|
+
guint bg_full_height : 1;
|
262
|
+
|
263
|
+
/* can edit this text */
|
264
|
+
guint editable : 1;
|
265
|
+
};
|
266
|
+
</pre>
|
267
|
+
<p>
|
268
|
+
Using <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> directly should rarely be necessary.
|
269
|
+
It's primarily useful with <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>.
|
270
|
+
As with most GTK+ structs, the fields in this struct should only
|
271
|
+
be read, never modified directly.
|
272
|
+
</p>
|
273
|
+
</div>
|
274
|
+
<hr>
|
275
|
+
<div class="refsect2">
|
276
|
+
<a name="gtk-text-tag-new"></a><h3>gtk_text_tag_new ()</h3>
|
277
|
+
<pre class="programlisting"><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="returnvalue">GtkTextTag</span></a> * gtk_text_tag_new (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
|
278
|
+
<p>
|
279
|
+
Creates a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>. Configure the tag using object arguments,
|
280
|
+
i.e. using <code class="function">g_object_set()</code>.
|
281
|
+
</p>
|
282
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
283
|
+
<colgroup>
|
284
|
+
<col align="left" valign="top">
|
285
|
+
<col>
|
286
|
+
</colgroup>
|
287
|
+
<tbody>
|
288
|
+
<tr>
|
289
|
+
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
290
|
+
<td>tag name, 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="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
291
|
+
</td>
|
292
|
+
</tr>
|
293
|
+
<tr>
|
294
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
295
|
+
<td>a new <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
|
296
|
+
</td>
|
297
|
+
</tr>
|
298
|
+
</tbody>
|
299
|
+
</table></div>
|
300
|
+
</div>
|
301
|
+
<hr>
|
302
|
+
<div class="refsect2">
|
303
|
+
<a name="gtk-text-tag-get-priority"></a><h3>gtk_text_tag_get_priority ()</h3>
|
304
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_text_tag_get_priority (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);</pre>
|
305
|
+
<p>
|
306
|
+
Get the tag priority.
|
307
|
+
</p>
|
308
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
309
|
+
<colgroup>
|
310
|
+
<col align="left" valign="top">
|
311
|
+
<col>
|
312
|
+
</colgroup>
|
313
|
+
<tbody>
|
314
|
+
<tr>
|
315
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
316
|
+
<td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
|
317
|
+
</td>
|
318
|
+
</tr>
|
319
|
+
<tr>
|
320
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
321
|
+
<td>The tag's priority.</td>
|
322
|
+
</tr>
|
323
|
+
</tbody>
|
324
|
+
</table></div>
|
325
|
+
</div>
|
326
|
+
<hr>
|
327
|
+
<div class="refsect2">
|
328
|
+
<a name="gtk-text-tag-set-priority"></a><h3>gtk_text_tag_set_priority ()</h3>
|
329
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_tag_set_priority (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
330
|
+
<em class="parameter"><code><span class="type">gint</span> priority</code></em>);</pre>
|
331
|
+
<p>
|
332
|
+
Sets the priority of a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>. Valid priorities are
|
333
|
+
start at 0 and go to one less than <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-get-size" title="gtk_text_tag_table_get_size ()"><code class="function">gtk_text_tag_table_get_size()</code></a>.
|
334
|
+
Each tag in a table has a unique priority; setting the priority
|
335
|
+
of one tag shifts the priorities of all the other tags in the
|
336
|
+
table to maintain a unique priority for each tag. Higher priority
|
337
|
+
tags "win" if two tags both set the same text attribute. When adding
|
338
|
+
a tag to a tag table, it will be assigned the highest priority in
|
339
|
+
the table by default; so normally the precedence of a set of tags
|
340
|
+
is the order in which they were added to the table, or created with
|
341
|
+
<a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-tag" title="gtk_text_buffer_create_tag ()"><code class="function">gtk_text_buffer_create_tag()</code></a>, which adds the tag to the buffer's table
|
342
|
+
automatically.
|
343
|
+
</p>
|
344
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
345
|
+
<colgroup>
|
346
|
+
<col align="left" valign="top">
|
347
|
+
<col>
|
348
|
+
</colgroup>
|
349
|
+
<tbody>
|
350
|
+
<tr>
|
351
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
352
|
+
<td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
|
353
|
+
</td>
|
354
|
+
</tr>
|
355
|
+
<tr>
|
356
|
+
<td><p><span class="term"><em class="parameter"><code>priority</code></em> :</span></p></td>
|
357
|
+
<td>the new priority</td>
|
358
|
+
</tr>
|
359
|
+
</tbody>
|
360
|
+
</table></div>
|
361
|
+
</div>
|
362
|
+
<hr>
|
363
|
+
<div class="refsect2">
|
364
|
+
<a name="gtk-text-tag-event"></a><h3>gtk_text_tag_event ()</h3>
|
365
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_text_tag_event (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
366
|
+
<em class="parameter"><code><span class="type">GObject</span> *event_object</code></em>,
|
367
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event</code></em>,
|
368
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
|
369
|
+
<p>
|
370
|
+
Emits the "event" signal on the <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>.
|
371
|
+
</p>
|
372
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
373
|
+
<colgroup>
|
374
|
+
<col align="left" valign="top">
|
375
|
+
<col>
|
376
|
+
</colgroup>
|
377
|
+
<tbody>
|
378
|
+
<tr>
|
379
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
380
|
+
<td>a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
|
381
|
+
</td>
|
382
|
+
</tr>
|
383
|
+
<tr>
|
384
|
+
<td><p><span class="term"><em class="parameter"><code>event_object</code></em> :</span></p></td>
|
385
|
+
<td>object that received the event, such as a widget</td>
|
386
|
+
</tr>
|
387
|
+
<tr>
|
388
|
+
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
389
|
+
<td>the event</td>
|
390
|
+
</tr>
|
391
|
+
<tr>
|
392
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
393
|
+
<td>location where the event was received</td>
|
394
|
+
</tr>
|
395
|
+
<tr>
|
396
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
397
|
+
<td>result of signal emission (whether the event was handled)</td>
|
398
|
+
</tr>
|
399
|
+
</tbody>
|
400
|
+
</table></div>
|
401
|
+
</div>
|
402
|
+
<hr>
|
403
|
+
<div class="refsect2">
|
404
|
+
<a name="GtkTextAppearance"></a><h3>struct GtkTextAppearance</h3>
|
405
|
+
<pre class="programlisting">struct GtkTextAppearance {
|
406
|
+
GdkColor bg_color;
|
407
|
+
GdkColor fg_color;
|
408
|
+
|
409
|
+
/* super/subscript rise, can be negative */
|
410
|
+
gint rise;
|
411
|
+
|
412
|
+
guint underline : 4; /* PangoUnderline */
|
413
|
+
guint strikethrough : 1;
|
414
|
+
|
415
|
+
/* Whether to use background-related values; this is irrelevant for
|
416
|
+
* the values struct when in a tag, but is used for the composite
|
417
|
+
* values struct; it's true if any of the tags being composited
|
418
|
+
* had background stuff set.
|
419
|
+
*/
|
420
|
+
guint draw_bg : 1;
|
421
|
+
|
422
|
+
/* These are only used when we are actually laying out and rendering
|
423
|
+
* a paragraph; not when a GtkTextAppearance is part of a
|
424
|
+
* GtkTextAttributes.
|
425
|
+
*/
|
426
|
+
guint inside_selection : 1;
|
427
|
+
guint is_text : 1;
|
428
|
+
|
429
|
+
GdkRGBA *rgba[2];
|
430
|
+
|
431
|
+
#if (defined(__SIZEOF_INT__) && defined(__SIZEOF_POINTER__)) && (__SIZEOF_INT__ == __SIZEOF_POINTER__)
|
432
|
+
/* unusable, just for ABI compat */
|
433
|
+
guint padding[2];
|
434
|
+
#endif
|
435
|
+
};
|
436
|
+
</pre>
|
437
|
+
</div>
|
438
|
+
<hr>
|
439
|
+
<div class="refsect2">
|
440
|
+
<a name="gtk-text-attributes-new"></a><h3>gtk_text_attributes_new ()</h3>
|
441
|
+
<pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * gtk_text_attributes_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
442
|
+
<p>
|
443
|
+
Creates a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>, which describes
|
444
|
+
a set of properties on some text.
|
445
|
+
</p>
|
446
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
447
|
+
<colgroup>
|
448
|
+
<col align="left" valign="top">
|
449
|
+
<col>
|
450
|
+
</colgroup>
|
451
|
+
<tbody><tr>
|
452
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
453
|
+
<td>a new <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>,
|
454
|
+
free with <a class="link" href="GtkTextTag.html#gtk-text-attributes-unref" title="gtk_text_attributes_unref ()"><code class="function">gtk_text_attributes_unref()</code></a>.</td>
|
455
|
+
</tr></tbody>
|
456
|
+
</table></div>
|
457
|
+
</div>
|
458
|
+
<hr>
|
459
|
+
<div class="refsect2">
|
460
|
+
<a name="gtk-text-attributes-copy"></a><h3>gtk_text_attributes_copy ()</h3>
|
461
|
+
<pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * gtk_text_attributes_copy (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *src</code></em>);</pre>
|
462
|
+
<p>
|
463
|
+
Copies <em class="parameter"><code>src</code></em> and returns a new <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>.
|
464
|
+
</p>
|
465
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
466
|
+
<colgroup>
|
467
|
+
<col align="left" valign="top">
|
468
|
+
<col>
|
469
|
+
</colgroup>
|
470
|
+
<tbody>
|
471
|
+
<tr>
|
472
|
+
<td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
|
473
|
+
<td>a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> to be copied</td>
|
474
|
+
</tr>
|
475
|
+
<tr>
|
476
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
477
|
+
<td>a copy of <em class="parameter"><code>src</code></em>,
|
478
|
+
free with <a class="link" href="GtkTextTag.html#gtk-text-attributes-unref" title="gtk_text_attributes_unref ()"><code class="function">gtk_text_attributes_unref()</code></a>
|
479
|
+
</td>
|
480
|
+
</tr>
|
481
|
+
</tbody>
|
482
|
+
</table></div>
|
483
|
+
</div>
|
484
|
+
<hr>
|
485
|
+
<div class="refsect2">
|
486
|
+
<a name="gtk-text-attributes-copy-values"></a><h3>gtk_text_attributes_copy_values ()</h3>
|
487
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_attributes_copy_values (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *src</code></em>,
|
488
|
+
<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *dest</code></em>);</pre>
|
489
|
+
<p>
|
490
|
+
Copies the values from <em class="parameter"><code>src</code></em> to <em class="parameter"><code>dest</code></em> so that <em class="parameter"><code>dest</code></em> has
|
491
|
+
the same values as <em class="parameter"><code>src</code></em>. Frees existing values in <em class="parameter"><code>dest</code></em>.
|
492
|
+
</p>
|
493
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
494
|
+
<colgroup>
|
495
|
+
<col align="left" valign="top">
|
496
|
+
<col>
|
497
|
+
</colgroup>
|
498
|
+
<tbody>
|
499
|
+
<tr>
|
500
|
+
<td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
|
501
|
+
<td>a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
502
|
+
</td>
|
503
|
+
</tr>
|
504
|
+
<tr>
|
505
|
+
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
|
506
|
+
<td>another <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
507
|
+
</td>
|
508
|
+
</tr>
|
509
|
+
</tbody>
|
510
|
+
</table></div>
|
511
|
+
</div>
|
512
|
+
<hr>
|
513
|
+
<div class="refsect2">
|
514
|
+
<a name="gtk-text-attributes-unref"></a><h3>gtk_text_attributes_unref ()</h3>
|
515
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_attributes_unref (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);</pre>
|
516
|
+
<p>
|
517
|
+
Decrements the reference count on <em class="parameter"><code>values</code></em>, freeing the structure
|
518
|
+
if the reference count reaches 0.
|
519
|
+
</p>
|
520
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
521
|
+
<colgroup>
|
522
|
+
<col align="left" valign="top">
|
523
|
+
<col>
|
524
|
+
</colgroup>
|
525
|
+
<tbody><tr>
|
526
|
+
<td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
|
527
|
+
<td>a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
528
|
+
</td>
|
529
|
+
</tr></tbody>
|
530
|
+
</table></div>
|
531
|
+
</div>
|
532
|
+
<hr>
|
533
|
+
<div class="refsect2">
|
534
|
+
<a name="gtk-text-attributes-ref"></a><h3>gtk_text_attributes_ref ()</h3>
|
535
|
+
<pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * gtk_text_attributes_ref (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);</pre>
|
536
|
+
<p>
|
537
|
+
Increments the reference count on <em class="parameter"><code>values</code></em>.
|
538
|
+
</p>
|
539
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
540
|
+
<colgroup>
|
541
|
+
<col align="left" valign="top">
|
542
|
+
<col>
|
543
|
+
</colgroup>
|
544
|
+
<tbody>
|
545
|
+
<tr>
|
546
|
+
<td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
|
547
|
+
<td>a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
548
|
+
</td>
|
549
|
+
</tr>
|
550
|
+
<tr>
|
551
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
552
|
+
<td>the <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> that were passed in</td>
|
553
|
+
</tr>
|
554
|
+
</tbody>
|
555
|
+
</table></div>
|
556
|
+
</div>
|
557
|
+
</div>
|
558
|
+
<div class="refsect1">
|
559
|
+
<a name="GtkTextTag.property-details"></a><h2>Property Details</h2>
|
560
|
+
<div class="refsect2">
|
561
|
+
<a name="GtkTextTag--accumulative-margin"></a><h3>The <code class="literal">"accumulative-margin"</code> property</h3>
|
562
|
+
<pre class="programlisting"> "accumulative-margin" <span class="type">gboolean</span> : Read / Write</pre>
|
563
|
+
<p>
|
564
|
+
Whether the margins accumulate or override each other.
|
565
|
+
</p>
|
566
|
+
<p>
|
567
|
+
When set to <code class="literal">TRUE</code> the margins of this tag are added to the margins
|
568
|
+
of any other non-accumulative margins present. When set to <code class="literal">FALSE</code>
|
569
|
+
the margins override one another (the default).
|
570
|
+
</p>
|
571
|
+
<p>Default value: FALSE</p>
|
572
|
+
<p class="since">Since 2.12</p>
|
573
|
+
</div>
|
574
|
+
<hr>
|
575
|
+
<div class="refsect2">
|
576
|
+
<a name="GtkTextTag--background"></a><h3>The <code class="literal">"background"</code> property</h3>
|
577
|
+
<pre class="programlisting"> "background" <span class="type">gchar</span>* : Write</pre>
|
578
|
+
<p>Background color as a string.</p>
|
579
|
+
<p>Default value: NULL</p>
|
580
|
+
</div>
|
581
|
+
<hr>
|
582
|
+
<div class="refsect2">
|
583
|
+
<a name="GtkTextTag--background-full-height"></a><h3>The <code class="literal">"background-full-height"</code> property</h3>
|
584
|
+
<pre class="programlisting"> "background-full-height" <span class="type">gboolean</span> : Read / Write</pre>
|
585
|
+
<p>Whether the background color fills the entire line height or only the height of the tagged characters.</p>
|
586
|
+
<p>Default value: FALSE</p>
|
587
|
+
</div>
|
588
|
+
<hr>
|
589
|
+
<div class="refsect2">
|
590
|
+
<a name="GtkTextTag--background-full-height-set"></a><h3>The <code class="literal">"background-full-height-set"</code> property</h3>
|
591
|
+
<pre class="programlisting"> "background-full-height-set" <span class="type">gboolean</span> : Read / Write</pre>
|
592
|
+
<p>Whether this tag affects background height.</p>
|
593
|
+
<p>Default value: FALSE</p>
|
594
|
+
</div>
|
595
|
+
<hr>
|
596
|
+
<div class="refsect2">
|
597
|
+
<a name="GtkTextTag--background-gdk"></a><h3>The <code class="literal">"background-gdk"</code> property</h3>
|
598
|
+
<pre class="programlisting"> "background-gdk" <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read / Write</pre>
|
599
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
600
|
+
<h3 class="title">Warning</h3>
|
601
|
+
<p><code class="literal">GtkTextTag:background-gdk</code> has been deprecated since version 3.4 and should not be used in newly-written code. Use <a class="link" href="GtkTextTag.html#GtkTextTag--background-rgba" title='The "background-rgba" property'><span class="type">"background-rgba"</span></a> instead.</p>
|
602
|
+
</div>
|
603
|
+
<p>
|
604
|
+
Background color as a <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a>.
|
605
|
+
</p>
|
606
|
+
</div>
|
607
|
+
<hr>
|
608
|
+
<div class="refsect2">
|
609
|
+
<a name="GtkTextTag--background-rgba"></a><h3>The <code class="literal">"background-rgba"</code> property</h3>
|
610
|
+
<pre class="programlisting"> "background-rgba" <a href="../gdk3/gdk3-RGBA-Colors.html#GdkRGBA"><span class="type">GdkRGBA</span></a>* : Read / Write</pre>
|
611
|
+
<p>
|
612
|
+
Background color as a <a href="../gdk3/gdk3-RGBA-Colors.html#GdkRGBA"><span class="type">GdkRGBA</span></a>.
|
613
|
+
</p>
|
614
|
+
<p class="since">Since 3.2</p>
|
615
|
+
</div>
|
616
|
+
<hr>
|
617
|
+
<div class="refsect2">
|
618
|
+
<a name="GtkTextTag--background-set"></a><h3>The <code class="literal">"background-set"</code> property</h3>
|
619
|
+
<pre class="programlisting"> "background-set" <span class="type">gboolean</span> : Read / Write</pre>
|
620
|
+
<p>Whether this tag affects the background color.</p>
|
621
|
+
<p>Default value: FALSE</p>
|
622
|
+
</div>
|
623
|
+
<hr>
|
624
|
+
<div class="refsect2">
|
625
|
+
<a name="GtkTextTag--direction"></a><h3>The <code class="literal">"direction"</code> property</h3>
|
626
|
+
<pre class="programlisting"> "direction" <a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="type">GtkTextDirection</span></a> : Read / Write</pre>
|
627
|
+
<p>Text direction, e.g. right-to-left or left-to-right.</p>
|
628
|
+
<p>Default value: GTK_TEXT_DIR_NONE</p>
|
629
|
+
</div>
|
630
|
+
<hr>
|
631
|
+
<div class="refsect2">
|
632
|
+
<a name="GtkTextTag--editable"></a><h3>The <code class="literal">"editable"</code> property</h3>
|
633
|
+
<pre class="programlisting"> "editable" <span class="type">gboolean</span> : Read / Write</pre>
|
634
|
+
<p>Whether the text can be modified by the user.</p>
|
635
|
+
<p>Default value: TRUE</p>
|
636
|
+
</div>
|
637
|
+
<hr>
|
638
|
+
<div class="refsect2">
|
639
|
+
<a name="GtkTextTag--editable-set"></a><h3>The <code class="literal">"editable-set"</code> property</h3>
|
640
|
+
<pre class="programlisting"> "editable-set" <span class="type">gboolean</span> : Read / Write</pre>
|
641
|
+
<p>Whether this tag affects text editability.</p>
|
642
|
+
<p>Default value: FALSE</p>
|
643
|
+
</div>
|
644
|
+
<hr>
|
645
|
+
<div class="refsect2">
|
646
|
+
<a name="GtkTextTag--family"></a><h3>The <code class="literal">"family"</code> property</h3>
|
647
|
+
<pre class="programlisting"> "family" <span class="type">gchar</span>* : Read / Write</pre>
|
648
|
+
<p>Name of the font family, e.g. Sans, Helvetica, Times, Monospace.</p>
|
649
|
+
<p>Default value: NULL</p>
|
650
|
+
</div>
|
651
|
+
<hr>
|
652
|
+
<div class="refsect2">
|
653
|
+
<a name="GtkTextTag--family-set"></a><h3>The <code class="literal">"family-set"</code> property</h3>
|
654
|
+
<pre class="programlisting"> "family-set" <span class="type">gboolean</span> : Read / Write</pre>
|
655
|
+
<p>Whether this tag affects the font family.</p>
|
656
|
+
<p>Default value: FALSE</p>
|
657
|
+
</div>
|
658
|
+
<hr>
|
659
|
+
<div class="refsect2">
|
660
|
+
<a name="GtkTextTag--font"></a><h3>The <code class="literal">"font"</code> property</h3>
|
661
|
+
<pre class="programlisting"> "font" <span class="type">gchar</span>* : Read / Write</pre>
|
662
|
+
<p>
|
663
|
+
Font description as string, e.g. \"Sans Italic 12\".
|
664
|
+
</p>
|
665
|
+
<p>
|
666
|
+
Note that the initial value of this property depends on
|
667
|
+
the internals of <span class="type">PangoFontDescription</span>.
|
668
|
+
</p>
|
669
|
+
<p>Default value: NULL</p>
|
670
|
+
</div>
|
671
|
+
<hr>
|
672
|
+
<div class="refsect2">
|
673
|
+
<a name="GtkTextTag--font-desc"></a><h3>The <code class="literal">"font-desc"</code> property</h3>
|
674
|
+
<pre class="programlisting"> "font-desc" <span class="type">PangoFontDescription</span>* : Read / Write</pre>
|
675
|
+
<p>Font description as a PangoFontDescription struct.</p>
|
676
|
+
</div>
|
677
|
+
<hr>
|
678
|
+
<div class="refsect2">
|
679
|
+
<a name="GtkTextTag--foreground"></a><h3>The <code class="literal">"foreground"</code> property</h3>
|
680
|
+
<pre class="programlisting"> "foreground" <span class="type">gchar</span>* : Write</pre>
|
681
|
+
<p>Foreground color as a string.</p>
|
682
|
+
<p>Default value: NULL</p>
|
683
|
+
</div>
|
684
|
+
<hr>
|
685
|
+
<div class="refsect2">
|
686
|
+
<a name="GtkTextTag--foreground-gdk"></a><h3>The <code class="literal">"foreground-gdk"</code> property</h3>
|
687
|
+
<pre class="programlisting"> "foreground-gdk" <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read / Write</pre>
|
688
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
689
|
+
<h3 class="title">Warning</h3>
|
690
|
+
<p><code class="literal">GtkTextTag:foreground-gdk</code> has been deprecated since version 3.4 and should not be used in newly-written code. Use <a class="link" href="GtkTextTag.html#GtkTextTag--foreground-rgba" title='The "foreground-rgba" property'><span class="type">"foreground-rgba"</span></a> instead.</p>
|
691
|
+
</div>
|
692
|
+
<p>
|
693
|
+
Foreground color as a <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a>.
|
694
|
+
</p>
|
695
|
+
</div>
|
696
|
+
<hr>
|
697
|
+
<div class="refsect2">
|
698
|
+
<a name="GtkTextTag--foreground-rgba"></a><h3>The <code class="literal">"foreground-rgba"</code> property</h3>
|
699
|
+
<pre class="programlisting"> "foreground-rgba" <a href="../gdk3/gdk3-RGBA-Colors.html#GdkRGBA"><span class="type">GdkRGBA</span></a>* : Read / Write</pre>
|
700
|
+
<p>
|
701
|
+
Foreground color as a <a href="../gdk3/gdk3-RGBA-Colors.html#GdkRGBA"><span class="type">GdkRGBA</span></a>.
|
702
|
+
</p>
|
703
|
+
<p class="since">Since 3.2</p>
|
704
|
+
</div>
|
705
|
+
<hr>
|
706
|
+
<div class="refsect2">
|
707
|
+
<a name="GtkTextTag--foreground-set"></a><h3>The <code class="literal">"foreground-set"</code> property</h3>
|
708
|
+
<pre class="programlisting"> "foreground-set" <span class="type">gboolean</span> : Read / Write</pre>
|
709
|
+
<p>Whether this tag affects the foreground color.</p>
|
710
|
+
<p>Default value: FALSE</p>
|
711
|
+
</div>
|
712
|
+
<hr>
|
713
|
+
<div class="refsect2">
|
714
|
+
<a name="GtkTextTag--indent"></a><h3>The <code class="literal">"indent"</code> property</h3>
|
715
|
+
<pre class="programlisting"> "indent" <span class="type">gint</span> : Read / Write</pre>
|
716
|
+
<p>Amount to indent the paragraph, in pixels.</p>
|
717
|
+
<p>Default value: 0</p>
|
718
|
+
</div>
|
719
|
+
<hr>
|
720
|
+
<div class="refsect2">
|
721
|
+
<a name="GtkTextTag--indent-set"></a><h3>The <code class="literal">"indent-set"</code> property</h3>
|
722
|
+
<pre class="programlisting"> "indent-set" <span class="type">gboolean</span> : Read / Write</pre>
|
723
|
+
<p>Whether this tag affects indentation.</p>
|
724
|
+
<p>Default value: FALSE</p>
|
725
|
+
</div>
|
726
|
+
<hr>
|
727
|
+
<div class="refsect2">
|
728
|
+
<a name="GtkTextTag--invisible"></a><h3>The <code class="literal">"invisible"</code> property</h3>
|
729
|
+
<pre class="programlisting"> "invisible" <span class="type">gboolean</span> : Read / Write</pre>
|
730
|
+
<p>
|
731
|
+
Whether this text is hidden.
|
732
|
+
</p>
|
733
|
+
<p>
|
734
|
+
Note that there may still be problems with the support for invisible
|
735
|
+
text, in particular when navigating programmatically inside a buffer
|
736
|
+
containing invisible segments.
|
737
|
+
</p>
|
738
|
+
<p>Default value: FALSE</p>
|
739
|
+
<p class="since">Since 2.8</p>
|
740
|
+
</div>
|
741
|
+
<hr>
|
742
|
+
<div class="refsect2">
|
743
|
+
<a name="GtkTextTag--invisible-set"></a><h3>The <code class="literal">"invisible-set"</code> property</h3>
|
744
|
+
<pre class="programlisting"> "invisible-set" <span class="type">gboolean</span> : Read / Write</pre>
|
745
|
+
<p>Whether this tag affects text visibility.</p>
|
746
|
+
<p>Default value: FALSE</p>
|
747
|
+
</div>
|
748
|
+
<hr>
|
749
|
+
<div class="refsect2">
|
750
|
+
<a name="GtkTextTag--justification"></a><h3>The <code class="literal">"justification"</code> property</h3>
|
751
|
+
<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>
|
752
|
+
<p>Left, right, or center justification.</p>
|
753
|
+
<p>Default value: GTK_JUSTIFY_LEFT</p>
|
754
|
+
</div>
|
755
|
+
<hr>
|
756
|
+
<div class="refsect2">
|
757
|
+
<a name="GtkTextTag--justification-set"></a><h3>The <code class="literal">"justification-set"</code> property</h3>
|
758
|
+
<pre class="programlisting"> "justification-set" <span class="type">gboolean</span> : Read / Write</pre>
|
759
|
+
<p>Whether this tag affects paragraph justification.</p>
|
760
|
+
<p>Default value: FALSE</p>
|
761
|
+
</div>
|
762
|
+
<hr>
|
763
|
+
<div class="refsect2">
|
764
|
+
<a name="GtkTextTag--language"></a><h3>The <code class="literal">"language"</code> property</h3>
|
765
|
+
<pre class="programlisting"> "language" <span class="type">gchar</span>* : Read / Write</pre>
|
766
|
+
<p>
|
767
|
+
The language this text is in, as an ISO code. Pango can use this as a
|
768
|
+
hint when rendering the text. If not set, an appropriate default will be
|
769
|
+
used.
|
770
|
+
</p>
|
771
|
+
<p>
|
772
|
+
Note that the initial value of this property depends on the current
|
773
|
+
locale, see also <a class="link" href="gtk3-General.html#gtk-get-default-language" title="gtk_get_default_language ()"><code class="function">gtk_get_default_language()</code></a>.
|
774
|
+
</p>
|
775
|
+
<p>Default value: NULL</p>
|
776
|
+
</div>
|
777
|
+
<hr>
|
778
|
+
<div class="refsect2">
|
779
|
+
<a name="GtkTextTag--language-set"></a><h3>The <code class="literal">"language-set"</code> property</h3>
|
780
|
+
<pre class="programlisting"> "language-set" <span class="type">gboolean</span> : Read / Write</pre>
|
781
|
+
<p>Whether this tag affects the language the text is rendered as.</p>
|
782
|
+
<p>Default value: FALSE</p>
|
783
|
+
</div>
|
784
|
+
<hr>
|
785
|
+
<div class="refsect2">
|
786
|
+
<a name="GtkTextTag--left-margin"></a><h3>The <code class="literal">"left-margin"</code> property</h3>
|
787
|
+
<pre class="programlisting"> "left-margin" <span class="type">gint</span> : Read / Write</pre>
|
788
|
+
<p>Width of the left margin in pixels.</p>
|
789
|
+
<p>Allowed values: >= 0</p>
|
790
|
+
<p>Default value: 0</p>
|
791
|
+
</div>
|
792
|
+
<hr>
|
793
|
+
<div class="refsect2">
|
794
|
+
<a name="GtkTextTag--left-margin-set"></a><h3>The <code class="literal">"left-margin-set"</code> property</h3>
|
795
|
+
<pre class="programlisting"> "left-margin-set" <span class="type">gboolean</span> : Read / Write</pre>
|
796
|
+
<p>Whether this tag affects the left margin.</p>
|
797
|
+
<p>Default value: FALSE</p>
|
798
|
+
</div>
|
799
|
+
<hr>
|
800
|
+
<div class="refsect2">
|
801
|
+
<a name="GtkTextTag--name"></a><h3>The <code class="literal">"name"</code> property</h3>
|
802
|
+
<pre class="programlisting"> "name" <span class="type">gchar</span>* : Read / Write / Construct Only</pre>
|
803
|
+
<p>Name used to refer to the text tag. NULL for anonymous tags.</p>
|
804
|
+
<p>Default value: NULL</p>
|
805
|
+
</div>
|
806
|
+
<hr>
|
807
|
+
<div class="refsect2">
|
808
|
+
<a name="GtkTextTag--paragraph-background"></a><h3>The <code class="literal">"paragraph-background"</code> property</h3>
|
809
|
+
<pre class="programlisting"> "paragraph-background" <span class="type">gchar</span>* : Write</pre>
|
810
|
+
<p>
|
811
|
+
The paragraph background color as a string.
|
812
|
+
</p>
|
813
|
+
<p>Default value: NULL</p>
|
814
|
+
<p class="since">Since 2.8</p>
|
815
|
+
</div>
|
816
|
+
<hr>
|
817
|
+
<div class="refsect2">
|
818
|
+
<a name="GtkTextTag--paragraph-background-gdk"></a><h3>The <code class="literal">"paragraph-background-gdk"</code> property</h3>
|
819
|
+
<pre class="programlisting"> "paragraph-background-gdk" <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read / Write</pre>
|
820
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
821
|
+
<h3 class="title">Warning</h3>
|
822
|
+
<p><code class="literal">GtkTextTag:paragraph-background-gdk</code> has been deprecated since version 3.4 and should not be used in newly-written code. Use <a class="link" href="GtkTextTag.html#GtkTextTag--paragraph-background-rgba" title='The "paragraph-background-rgba" property'><span class="type">"paragraph-background-rgba"</span></a> instead.</p>
|
823
|
+
</div>
|
824
|
+
<p>
|
825
|
+
The paragraph background color as a as a <a href="../gdk3/gdk3-Colors.html#GdkColor"><span class="type">GdkColor</span></a>.
|
826
|
+
</p>
|
827
|
+
<p class="since">Since 2.8</p>
|
828
|
+
</div>
|
829
|
+
<hr>
|
830
|
+
<div class="refsect2">
|
831
|
+
<a name="GtkTextTag--paragraph-background-rgba"></a><h3>The <code class="literal">"paragraph-background-rgba"</code> property</h3>
|
832
|
+
<pre class="programlisting"> "paragraph-background-rgba" <a href="../gdk3/gdk3-RGBA-Colors.html#GdkRGBA"><span class="type">GdkRGBA</span></a>* : Read / Write</pre>
|
833
|
+
<p>
|
834
|
+
The paragraph background color as a as a <a href="../gdk3/gdk3-RGBA-Colors.html#GdkRGBA"><span class="type">GdkRGBA</span></a>.
|
835
|
+
</p>
|
836
|
+
<p class="since">Since 3.2</p>
|
837
|
+
</div>
|
838
|
+
<hr>
|
839
|
+
<div class="refsect2">
|
840
|
+
<a name="GtkTextTag--paragraph-background-set"></a><h3>The <code class="literal">"paragraph-background-set"</code> property</h3>
|
841
|
+
<pre class="programlisting"> "paragraph-background-set" <span class="type">gboolean</span> : Read / Write</pre>
|
842
|
+
<p>Whether this tag affects the paragraph background color.</p>
|
843
|
+
<p>Default value: FALSE</p>
|
844
|
+
</div>
|
845
|
+
<hr>
|
846
|
+
<div class="refsect2">
|
847
|
+
<a name="GtkTextTag--pixels-above-lines"></a><h3>The <code class="literal">"pixels-above-lines"</code> property</h3>
|
848
|
+
<pre class="programlisting"> "pixels-above-lines" <span class="type">gint</span> : Read / Write</pre>
|
849
|
+
<p>Pixels of blank space above paragraphs.</p>
|
850
|
+
<p>Allowed values: >= 0</p>
|
851
|
+
<p>Default value: 0</p>
|
852
|
+
</div>
|
853
|
+
<hr>
|
854
|
+
<div class="refsect2">
|
855
|
+
<a name="GtkTextTag--pixels-above-lines-set"></a><h3>The <code class="literal">"pixels-above-lines-set"</code> property</h3>
|
856
|
+
<pre class="programlisting"> "pixels-above-lines-set" <span class="type">gboolean</span> : Read / Write</pre>
|
857
|
+
<p>Whether this tag affects the number of pixels above lines.</p>
|
858
|
+
<p>Default value: FALSE</p>
|
859
|
+
</div>
|
860
|
+
<hr>
|
861
|
+
<div class="refsect2">
|
862
|
+
<a name="GtkTextTag--pixels-below-lines"></a><h3>The <code class="literal">"pixels-below-lines"</code> property</h3>
|
863
|
+
<pre class="programlisting"> "pixels-below-lines" <span class="type">gint</span> : Read / Write</pre>
|
864
|
+
<p>Pixels of blank space below paragraphs.</p>
|
865
|
+
<p>Allowed values: >= 0</p>
|
866
|
+
<p>Default value: 0</p>
|
867
|
+
</div>
|
868
|
+
<hr>
|
869
|
+
<div class="refsect2">
|
870
|
+
<a name="GtkTextTag--pixels-below-lines-set"></a><h3>The <code class="literal">"pixels-below-lines-set"</code> property</h3>
|
871
|
+
<pre class="programlisting"> "pixels-below-lines-set" <span class="type">gboolean</span> : Read / Write</pre>
|
872
|
+
<p>Whether this tag affects the number of pixels above lines.</p>
|
873
|
+
<p>Default value: FALSE</p>
|
874
|
+
</div>
|
875
|
+
<hr>
|
876
|
+
<div class="refsect2">
|
877
|
+
<a name="GtkTextTag--pixels-inside-wrap"></a><h3>The <code class="literal">"pixels-inside-wrap"</code> property</h3>
|
878
|
+
<pre class="programlisting"> "pixels-inside-wrap" <span class="type">gint</span> : Read / Write</pre>
|
879
|
+
<p>Pixels of blank space between wrapped lines in a paragraph.</p>
|
880
|
+
<p>Allowed values: >= 0</p>
|
881
|
+
<p>Default value: 0</p>
|
882
|
+
</div>
|
883
|
+
<hr>
|
884
|
+
<div class="refsect2">
|
885
|
+
<a name="GtkTextTag--pixels-inside-wrap-set"></a><h3>The <code class="literal">"pixels-inside-wrap-set"</code> property</h3>
|
886
|
+
<pre class="programlisting"> "pixels-inside-wrap-set" <span class="type">gboolean</span> : Read / Write</pre>
|
887
|
+
<p>Whether this tag affects the number of pixels between wrapped lines.</p>
|
888
|
+
<p>Default value: FALSE</p>
|
889
|
+
</div>
|
890
|
+
<hr>
|
891
|
+
<div class="refsect2">
|
892
|
+
<a name="GtkTextTag--right-margin"></a><h3>The <code class="literal">"right-margin"</code> property</h3>
|
893
|
+
<pre class="programlisting"> "right-margin" <span class="type">gint</span> : Read / Write</pre>
|
894
|
+
<p>Width of the right margin in pixels.</p>
|
895
|
+
<p>Allowed values: >= 0</p>
|
896
|
+
<p>Default value: 0</p>
|
897
|
+
</div>
|
898
|
+
<hr>
|
899
|
+
<div class="refsect2">
|
900
|
+
<a name="GtkTextTag--right-margin-set"></a><h3>The <code class="literal">"right-margin-set"</code> property</h3>
|
901
|
+
<pre class="programlisting"> "right-margin-set" <span class="type">gboolean</span> : Read / Write</pre>
|
902
|
+
<p>Whether this tag affects the right margin.</p>
|
903
|
+
<p>Default value: FALSE</p>
|
904
|
+
</div>
|
905
|
+
<hr>
|
906
|
+
<div class="refsect2">
|
907
|
+
<a name="GtkTextTag--rise"></a><h3>The <code class="literal">"rise"</code> property</h3>
|
908
|
+
<pre class="programlisting"> "rise" <span class="type">gint</span> : Read / Write</pre>
|
909
|
+
<p>Offset of text above the baseline (below the baseline if rise is negative) in Pango units.</p>
|
910
|
+
<p>Default value: 0</p>
|
911
|
+
</div>
|
912
|
+
<hr>
|
913
|
+
<div class="refsect2">
|
914
|
+
<a name="GtkTextTag--rise-set"></a><h3>The <code class="literal">"rise-set"</code> property</h3>
|
915
|
+
<pre class="programlisting"> "rise-set" <span class="type">gboolean</span> : Read / Write</pre>
|
916
|
+
<p>Whether this tag affects the rise.</p>
|
917
|
+
<p>Default value: FALSE</p>
|
918
|
+
</div>
|
919
|
+
<hr>
|
920
|
+
<div class="refsect2">
|
921
|
+
<a name="GtkTextTag--scale"></a><h3>The <code class="literal">"scale"</code> property</h3>
|
922
|
+
<pre class="programlisting"> "scale" <span class="type">gdouble</span> : Read / Write</pre>
|
923
|
+
<p>Font size as a scale factor relative to the default font size. This properly adapts to theme changes etc. so is recommended. Pango predefines some scales such as PANGO_SCALE_X_LARGE.</p>
|
924
|
+
<p>Allowed values: >= 0</p>
|
925
|
+
<p>Default value: 1</p>
|
926
|
+
</div>
|
927
|
+
<hr>
|
928
|
+
<div class="refsect2">
|
929
|
+
<a name="GtkTextTag--scale-set"></a><h3>The <code class="literal">"scale-set"</code> property</h3>
|
930
|
+
<pre class="programlisting"> "scale-set" <span class="type">gboolean</span> : Read / Write</pre>
|
931
|
+
<p>Whether this tag scales the font size by a factor.</p>
|
932
|
+
<p>Default value: FALSE</p>
|
933
|
+
</div>
|
934
|
+
<hr>
|
935
|
+
<div class="refsect2">
|
936
|
+
<a name="GtkTextTag--size"></a><h3>The <code class="literal">"size"</code> property</h3>
|
937
|
+
<pre class="programlisting"> "size" <span class="type">gint</span> : Read / Write</pre>
|
938
|
+
<p>Font size in Pango units.</p>
|
939
|
+
<p>Allowed values: >= 0</p>
|
940
|
+
<p>Default value: 0</p>
|
941
|
+
</div>
|
942
|
+
<hr>
|
943
|
+
<div class="refsect2">
|
944
|
+
<a name="GtkTextTag--size-points"></a><h3>The <code class="literal">"size-points"</code> property</h3>
|
945
|
+
<pre class="programlisting"> "size-points" <span class="type">gdouble</span> : Read / Write</pre>
|
946
|
+
<p>Font size in points.</p>
|
947
|
+
<p>Allowed values: >= 0</p>
|
948
|
+
<p>Default value: 0</p>
|
949
|
+
</div>
|
950
|
+
<hr>
|
951
|
+
<div class="refsect2">
|
952
|
+
<a name="GtkTextTag--size-set"></a><h3>The <code class="literal">"size-set"</code> property</h3>
|
953
|
+
<pre class="programlisting"> "size-set" <span class="type">gboolean</span> : Read / Write</pre>
|
954
|
+
<p>Whether this tag affects the font size.</p>
|
955
|
+
<p>Default value: FALSE</p>
|
956
|
+
</div>
|
957
|
+
<hr>
|
958
|
+
<div class="refsect2">
|
959
|
+
<a name="GtkTextTag--stretch"></a><h3>The <code class="literal">"stretch"</code> property</h3>
|
960
|
+
<pre class="programlisting"> "stretch" <span class="type">PangoStretch</span> : Read / Write</pre>
|
961
|
+
<p>Font stretch as a PangoStretch, e.g. PANGO_STRETCH_CONDENSED.</p>
|
962
|
+
<p>Default value: PANGO_STRETCH_NORMAL</p>
|
963
|
+
</div>
|
964
|
+
<hr>
|
965
|
+
<div class="refsect2">
|
966
|
+
<a name="GtkTextTag--stretch-set"></a><h3>The <code class="literal">"stretch-set"</code> property</h3>
|
967
|
+
<pre class="programlisting"> "stretch-set" <span class="type">gboolean</span> : Read / Write</pre>
|
968
|
+
<p>Whether this tag affects the font stretch.</p>
|
969
|
+
<p>Default value: FALSE</p>
|
970
|
+
</div>
|
971
|
+
<hr>
|
972
|
+
<div class="refsect2">
|
973
|
+
<a name="GtkTextTag--strikethrough"></a><h3>The <code class="literal">"strikethrough"</code> property</h3>
|
974
|
+
<pre class="programlisting"> "strikethrough" <span class="type">gboolean</span> : Read / Write</pre>
|
975
|
+
<p>Whether to strike through the text.</p>
|
976
|
+
<p>Default value: FALSE</p>
|
977
|
+
</div>
|
978
|
+
<hr>
|
979
|
+
<div class="refsect2">
|
980
|
+
<a name="GtkTextTag--strikethrough-set"></a><h3>The <code class="literal">"strikethrough-set"</code> property</h3>
|
981
|
+
<pre class="programlisting"> "strikethrough-set" <span class="type">gboolean</span> : Read / Write</pre>
|
982
|
+
<p>Whether this tag affects strikethrough.</p>
|
983
|
+
<p>Default value: FALSE</p>
|
984
|
+
</div>
|
985
|
+
<hr>
|
986
|
+
<div class="refsect2">
|
987
|
+
<a name="GtkTextTag--style"></a><h3>The <code class="literal">"style"</code> property</h3>
|
988
|
+
<pre class="programlisting"> "style" <span class="type">PangoStyle</span> : Read / Write</pre>
|
989
|
+
<p>Font style as a PangoStyle, e.g. PANGO_STYLE_ITALIC.</p>
|
990
|
+
<p>Default value: PANGO_STYLE_NORMAL</p>
|
991
|
+
</div>
|
992
|
+
<hr>
|
993
|
+
<div class="refsect2">
|
994
|
+
<a name="GtkTextTag--style-set"></a><h3>The <code class="literal">"style-set"</code> property</h3>
|
995
|
+
<pre class="programlisting"> "style-set" <span class="type">gboolean</span> : Read / Write</pre>
|
996
|
+
<p>Whether this tag affects the font style.</p>
|
997
|
+
<p>Default value: FALSE</p>
|
998
|
+
</div>
|
999
|
+
<hr>
|
1000
|
+
<div class="refsect2">
|
1001
|
+
<a name="GtkTextTag--tabs"></a><h3>The <code class="literal">"tabs"</code> property</h3>
|
1002
|
+
<pre class="programlisting"> "tabs" <span class="type">PangoTabArray</span>* : Read / Write</pre>
|
1003
|
+
<p>Custom tabs for this text.</p>
|
1004
|
+
</div>
|
1005
|
+
<hr>
|
1006
|
+
<div class="refsect2">
|
1007
|
+
<a name="GtkTextTag--tabs-set"></a><h3>The <code class="literal">"tabs-set"</code> property</h3>
|
1008
|
+
<pre class="programlisting"> "tabs-set" <span class="type">gboolean</span> : Read / Write</pre>
|
1009
|
+
<p>Whether this tag affects tabs.</p>
|
1010
|
+
<p>Default value: FALSE</p>
|
1011
|
+
</div>
|
1012
|
+
<hr>
|
1013
|
+
<div class="refsect2">
|
1014
|
+
<a name="GtkTextTag--underline"></a><h3>The <code class="literal">"underline"</code> property</h3>
|
1015
|
+
<pre class="programlisting"> "underline" <span class="type">PangoUnderline</span> : Read / Write</pre>
|
1016
|
+
<p>Style of underline for this text.</p>
|
1017
|
+
<p>Default value: PANGO_UNDERLINE_NONE</p>
|
1018
|
+
</div>
|
1019
|
+
<hr>
|
1020
|
+
<div class="refsect2">
|
1021
|
+
<a name="GtkTextTag--underline-set"></a><h3>The <code class="literal">"underline-set"</code> property</h3>
|
1022
|
+
<pre class="programlisting"> "underline-set" <span class="type">gboolean</span> : Read / Write</pre>
|
1023
|
+
<p>Whether this tag affects underlining.</p>
|
1024
|
+
<p>Default value: FALSE</p>
|
1025
|
+
</div>
|
1026
|
+
<hr>
|
1027
|
+
<div class="refsect2">
|
1028
|
+
<a name="GtkTextTag--variant"></a><h3>The <code class="literal">"variant"</code> property</h3>
|
1029
|
+
<pre class="programlisting"> "variant" <span class="type">PangoVariant</span> : Read / Write</pre>
|
1030
|
+
<p>Font variant as a PangoVariant, e.g. PANGO_VARIANT_SMALL_CAPS.</p>
|
1031
|
+
<p>Default value: PANGO_VARIANT_NORMAL</p>
|
1032
|
+
</div>
|
1033
|
+
<hr>
|
1034
|
+
<div class="refsect2">
|
1035
|
+
<a name="GtkTextTag--variant-set"></a><h3>The <code class="literal">"variant-set"</code> property</h3>
|
1036
|
+
<pre class="programlisting"> "variant-set" <span class="type">gboolean</span> : Read / Write</pre>
|
1037
|
+
<p>Whether this tag affects the font variant.</p>
|
1038
|
+
<p>Default value: FALSE</p>
|
1039
|
+
</div>
|
1040
|
+
<hr>
|
1041
|
+
<div class="refsect2">
|
1042
|
+
<a name="GtkTextTag--weight"></a><h3>The <code class="literal">"weight"</code> property</h3>
|
1043
|
+
<pre class="programlisting"> "weight" <span class="type">gint</span> : Read / Write</pre>
|
1044
|
+
<p>Font weight as an integer, see predefined values in PangoWeight; for example, PANGO_WEIGHT_BOLD.</p>
|
1045
|
+
<p>Allowed values: >= 0</p>
|
1046
|
+
<p>Default value: 400</p>
|
1047
|
+
</div>
|
1048
|
+
<hr>
|
1049
|
+
<div class="refsect2">
|
1050
|
+
<a name="GtkTextTag--weight-set"></a><h3>The <code class="literal">"weight-set"</code> property</h3>
|
1051
|
+
<pre class="programlisting"> "weight-set" <span class="type">gboolean</span> : Read / Write</pre>
|
1052
|
+
<p>Whether this tag affects the font weight.</p>
|
1053
|
+
<p>Default value: FALSE</p>
|
1054
|
+
</div>
|
1055
|
+
<hr>
|
1056
|
+
<div class="refsect2">
|
1057
|
+
<a name="GtkTextTag--wrap-mode"></a><h3>The <code class="literal">"wrap-mode"</code> property</h3>
|
1058
|
+
<pre class="programlisting"> "wrap-mode" <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a> : Read / Write</pre>
|
1059
|
+
<p>Whether to wrap lines never, at word boundaries, or at character boundaries.</p>
|
1060
|
+
<p>Default value: GTK_WRAP_NONE</p>
|
1061
|
+
</div>
|
1062
|
+
<hr>
|
1063
|
+
<div class="refsect2">
|
1064
|
+
<a name="GtkTextTag--wrap-mode-set"></a><h3>The <code class="literal">"wrap-mode-set"</code> property</h3>
|
1065
|
+
<pre class="programlisting"> "wrap-mode-set" <span class="type">gboolean</span> : Read / Write</pre>
|
1066
|
+
<p>Whether this tag affects line wrap mode.</p>
|
1067
|
+
<p>Default value: FALSE</p>
|
1068
|
+
</div>
|
1069
|
+
</div>
|
1070
|
+
<div class="refsect1">
|
1071
|
+
<a name="GtkTextTag.signal-details"></a><h2>Signal Details</h2>
|
1072
|
+
<div class="refsect2">
|
1073
|
+
<a name="GtkTextTag-event"></a><h3>The <code class="literal">"event"</code> signal</h3>
|
1074
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> user_function (<a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag,
|
1075
|
+
<span class="type">GObject</span> *object,
|
1076
|
+
<a href="../gdk3/gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
|
1077
|
+
<a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter,
|
1078
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
1079
|
+
<p>
|
1080
|
+
The ::event signal is emitted when an event occurs on a region of the
|
1081
|
+
buffer marked with this tag.
|
1082
|
+
</p>
|
1083
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1084
|
+
<colgroup>
|
1085
|
+
<col align="left" valign="top">
|
1086
|
+
<col>
|
1087
|
+
</colgroup>
|
1088
|
+
<tbody>
|
1089
|
+
<tr>
|
1090
|
+
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
1091
|
+
<td>the <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> on which the signal is emitted</td>
|
1092
|
+
</tr>
|
1093
|
+
<tr>
|
1094
|
+
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
1095
|
+
<td>the object the event was fired from (typically a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>)</td>
|
1096
|
+
</tr>
|
1097
|
+
<tr>
|
1098
|
+
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
1099
|
+
<td>the event which triggered the signal</td>
|
1100
|
+
</tr>
|
1101
|
+
<tr>
|
1102
|
+
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1103
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> pointing at the location the event occured</td>
|
1104
|
+
</tr>
|
1105
|
+
<tr>
|
1106
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
1107
|
+
<td>user data set when the signal handler was connected.</td>
|
1108
|
+
</tr>
|
1109
|
+
<tr>
|
1110
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1111
|
+
<td>
|
1112
|
+
<code class="literal">TRUE</code> to stop other handlers from being invoked for the
|
1113
|
+
event. <code class="literal">FALSE</code> to propagate the event further.</td>
|
1114
|
+
</tr>
|
1115
|
+
</tbody>
|
1116
|
+
</table></div>
|
1117
|
+
</div>
|
1118
|
+
</div>
|
1119
|
+
</div>
|
1120
|
+
<div class="footer">
|
1121
|
+
<hr>
|
1122
|
+
Generated by GTK-Doc V1.18.1</div>
|
1123
|
+
</body>
|
1124
|
+
</html>
|