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,3957 @@
|
|
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>GtkEntry</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="NumericEntry.html" title="Numeric/Text Data Entry">
|
9
|
+
<link rel="prev" href="NumericEntry.html" title="Numeric/Text Data Entry">
|
10
|
+
<link rel="next" href="GtkEntryBuffer.html" title="GtkEntryBuffer">
|
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="NumericEntry.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="NumericEntry.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="GtkEntryBuffer.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="#GtkEntry.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#GtkEntry.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#GtkEntry.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
|
|
30
|
+
<a href="#GtkEntry.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
|
31
|
+
|
|
32
|
+
<a href="#GtkEntry.properties" class="shortcut">Properties</a>
|
33
|
+
|
|
34
|
+
<a href="#GtkEntry.style-properties" class="shortcut">Style Properties</a>
|
35
|
+
|
|
36
|
+
<a href="#GtkEntry.signals" class="shortcut">Signals</a>
|
37
|
+
</td></tr>
|
38
|
+
</table>
|
39
|
+
<div class="refentry">
|
40
|
+
<a name="GtkEntry"></a><div class="titlepage"></div>
|
41
|
+
<div class="refnamediv"><table width="100%"><tr>
|
42
|
+
<td valign="top">
|
43
|
+
<h2><span class="refentrytitle"><a name="GtkEntry.top_of_page"></a>GtkEntry</span></h2>
|
44
|
+
<p>GtkEntry — A single line text entry field</p>
|
45
|
+
</td>
|
46
|
+
<td valign="top" align="right"><img src="entry.png"></td>
|
47
|
+
</tr></table></div>
|
48
|
+
<div class="refsynopsisdiv">
|
49
|
+
<a name="GtkEntry.synopsis"></a><h2>Synopsis</h2>
|
50
|
+
<pre class="synopsis">
|
51
|
+
#include <gtk/gtk.h>
|
52
|
+
|
53
|
+
struct <a class="link" href="GtkEntry.html#GtkEntry-struct" title="struct GtkEntry">GtkEntry</a>;
|
54
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkEntry.html#gtk-entry-new" title="gtk_entry_new ()">gtk_entry_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
55
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkEntry.html#gtk-entry-new-with-buffer" title="gtk_entry_new_with_buffer ()">gtk_entry_new_with_buffer</a> (<em class="parameter"><code><a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> *buffer</code></em>);
|
56
|
+
<a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="returnvalue">GtkEntryBuffer</span></a> * <a class="link" href="GtkEntry.html#gtk-entry-get-buffer" title="gtk_entry_get_buffer ()">gtk_entry_get_buffer</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
57
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-buffer" title="gtk_entry_set_buffer ()">gtk_entry_set_buffer</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
58
|
+
<em class="parameter"><code><a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> *buffer</code></em>);
|
59
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-text" title="gtk_entry_set_text ()">gtk_entry_set_text</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
60
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>);
|
61
|
+
const <span class="returnvalue">gchar</span> * <a class="link" href="GtkEntry.html#gtk-entry-get-text" title="gtk_entry_get_text ()">gtk_entry_get_text</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
62
|
+
<span class="returnvalue">guint16</span> <a class="link" href="GtkEntry.html#gtk-entry-get-text-length" title="gtk_entry_get_text_length ()">gtk_entry_get_text_length</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
63
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-get-text-area" title="gtk_entry_get_text_area ()">gtk_entry_get_text_area</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
64
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *text_area</code></em>);
|
65
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-visibility" title="gtk_entry_set_visibility ()">gtk_entry_set_visibility</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
66
|
+
<em class="parameter"><code><span class="type">gboolean</span> visible</code></em>);
|
67
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-invisible-char" title="gtk_entry_set_invisible_char ()">gtk_entry_set_invisible_char</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
68
|
+
<em class="parameter"><code><span class="type">gunichar</span> ch</code></em>);
|
69
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-unset-invisible-char" title="gtk_entry_unset_invisible_char ()">gtk_entry_unset_invisible_char</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
70
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-max-length" title="gtk_entry_set_max_length ()">gtk_entry_set_max_length</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
71
|
+
<em class="parameter"><code><span class="type">gint</span> max</code></em>);
|
72
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkEntry.html#gtk-entry-get-activates-default" title="gtk_entry_get_activates_default ()">gtk_entry_get_activates_default</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
73
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkEntry.html#gtk-entry-get-has-frame" title="gtk_entry_get_has_frame ()">gtk_entry_get_has_frame</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
74
|
+
const <a class="link" href="GtkStyleContext.html#GtkBorder"><span class="returnvalue">GtkBorder</span></a> * <a class="link" href="GtkEntry.html#gtk-entry-get-inner-border" title="gtk_entry_get_inner_border ()">gtk_entry_get_inner_border</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
75
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkEntry.html#gtk-entry-get-width-chars" title="gtk_entry_get_width_chars ()">gtk_entry_get_width_chars</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
76
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-activates-default" title="gtk_entry_set_activates_default ()">gtk_entry_set_activates_default</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
77
|
+
<em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);
|
78
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-has-frame" title="gtk_entry_set_has_frame ()">gtk_entry_set_has_frame</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
79
|
+
<em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);
|
80
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-inner-border" title="gtk_entry_set_inner_border ()">gtk_entry_set_inner_border</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
81
|
+
<em class="parameter"><code>const <a class="link" href="GtkStyleContext.html#GtkBorder"><span class="type">GtkBorder</span></a> *border</code></em>);
|
82
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-width-chars" title="gtk_entry_set_width_chars ()">gtk_entry_set_width_chars</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
83
|
+
<em class="parameter"><code><span class="type">gint</span> n_chars</code></em>);
|
84
|
+
<span class="returnvalue">gunichar</span> <a class="link" href="GtkEntry.html#gtk-entry-get-invisible-char" title="gtk_entry_get_invisible_char ()">gtk_entry_get_invisible_char</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
85
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-alignment" title="gtk_entry_set_alignment ()">gtk_entry_set_alignment</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
86
|
+
<em class="parameter"><code><span class="type">gfloat</span> xalign</code></em>);
|
87
|
+
<span class="returnvalue">gfloat</span> <a class="link" href="GtkEntry.html#gtk-entry-get-alignment" title="gtk_entry_get_alignment ()">gtk_entry_get_alignment</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
88
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-placeholder-text" title="gtk_entry_set_placeholder_text ()">gtk_entry_set_placeholder_text</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
89
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>);
|
90
|
+
const <span class="returnvalue">gchar</span> * <a class="link" href="GtkEntry.html#gtk-entry-get-placeholder-text" title="gtk_entry_get_placeholder_text ()">gtk_entry_get_placeholder_text</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
91
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-overwrite-mode" title="gtk_entry_set_overwrite_mode ()">gtk_entry_set_overwrite_mode</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
92
|
+
<em class="parameter"><code><span class="type">gboolean</span> overwrite</code></em>);
|
93
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkEntry.html#gtk-entry-get-overwrite-mode" title="gtk_entry_get_overwrite_mode ()">gtk_entry_get_overwrite_mode</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
94
|
+
<span class="returnvalue">PangoLayout</span> * <a class="link" href="GtkEntry.html#gtk-entry-get-layout" title="gtk_entry_get_layout ()">gtk_entry_get_layout</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
95
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-get-layout-offsets" title="gtk_entry_get_layout_offsets ()">gtk_entry_get_layout_offsets</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
96
|
+
<em class="parameter"><code><span class="type">gint</span> *x</code></em>,
|
97
|
+
<em class="parameter"><code><span class="type">gint</span> *y</code></em>);
|
98
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkEntry.html#gtk-entry-layout-index-to-text-index" title="gtk_entry_layout_index_to_text_index ()">gtk_entry_layout_index_to_text_index</a>
|
99
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
100
|
+
<em class="parameter"><code><span class="type">gint</span> layout_index</code></em>);
|
101
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkEntry.html#gtk-entry-text-index-to-layout-index" title="gtk_entry_text_index_to_layout_index ()">gtk_entry_text_index_to_layout_index</a>
|
102
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
103
|
+
<em class="parameter"><code><span class="type">gint</span> text_index</code></em>);
|
104
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-attributes" title="gtk_entry_set_attributes ()">gtk_entry_set_attributes</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
105
|
+
<em class="parameter"><code><span class="type">PangoAttrList</span> *attrs</code></em>);
|
106
|
+
<span class="returnvalue">PangoAttrList</span> * <a class="link" href="GtkEntry.html#gtk-entry-get-attributes" title="gtk_entry_get_attributes ()">gtk_entry_get_attributes</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
107
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkEntry.html#gtk-entry-get-max-length" title="gtk_entry_get_max_length ()">gtk_entry_get_max_length</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
108
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkEntry.html#gtk-entry-get-visibility" title="gtk_entry_get_visibility ()">gtk_entry_get_visibility</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
109
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-completion" title="gtk_entry_set_completion ()">gtk_entry_set_completion</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
110
|
+
<em class="parameter"><code><a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="type">GtkEntryCompletion</span></a> *completion</code></em>);
|
111
|
+
<a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="returnvalue">GtkEntryCompletion</span></a> * <a class="link" href="GtkEntry.html#gtk-entry-get-completion" title="gtk_entry_get_completion ()">gtk_entry_get_completion</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
112
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-cursor-hadjustment" title="gtk_entry_set_cursor_hadjustment ()">gtk_entry_set_cursor_hadjustment</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
113
|
+
<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);
|
114
|
+
<a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * <a class="link" href="GtkEntry.html#gtk-entry-get-cursor-hadjustment" title="gtk_entry_get_cursor_hadjustment ()">gtk_entry_get_cursor_hadjustment</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
115
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-progress-fraction" title="gtk_entry_set_progress_fraction ()">gtk_entry_set_progress_fraction</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
116
|
+
<em class="parameter"><code><span class="type">gdouble</span> fraction</code></em>);
|
117
|
+
<span class="returnvalue">gdouble</span> <a class="link" href="GtkEntry.html#gtk-entry-get-progress-fraction" title="gtk_entry_get_progress_fraction ()">gtk_entry_get_progress_fraction</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
118
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-progress-pulse-step" title="gtk_entry_set_progress_pulse_step ()">gtk_entry_set_progress_pulse_step</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
119
|
+
<em class="parameter"><code><span class="type">gdouble</span> fraction</code></em>);
|
120
|
+
<span class="returnvalue">gdouble</span> <a class="link" href="GtkEntry.html#gtk-entry-get-progress-pulse-step" title="gtk_entry_get_progress_pulse_step ()">gtk_entry_get_progress_pulse_step</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
121
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-progress-pulse" title="gtk_entry_progress_pulse ()">gtk_entry_progress_pulse</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
122
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkEntry.html#gtk-entry-im-context-filter-keypress" title="gtk_entry_im_context_filter_keypress ()">gtk_entry_im_context_filter_keypress</a>
|
123
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
124
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>);
|
125
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-reset-im-context" title="gtk_entry_reset_im_context ()">gtk_entry_reset_im_context</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
126
|
+
enum <a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition">GtkEntryIconPosition</a>;
|
127
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-icon-from-pixbuf" title="gtk_entry_set_icon_from_pixbuf ()">gtk_entry_set_icon_from_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
128
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
129
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
|
130
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-icon-from-stock" title="gtk_entry_set_icon_from_stock ()">gtk_entry_set_icon_from_stock</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
131
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
132
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *stock_id</code></em>);
|
133
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-icon-from-icon-name" title="gtk_entry_set_icon_from_icon_name ()">gtk_entry_set_icon_from_icon_name</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
134
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
135
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *icon_name</code></em>);
|
136
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-icon-from-gicon" title="gtk_entry_set_icon_from_gicon ()">gtk_entry_set_icon_from_gicon</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
137
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
138
|
+
<em class="parameter"><code><span class="type">GIcon</span> *icon</code></em>);
|
139
|
+
<a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="returnvalue">GtkImageType</span></a> <a class="link" href="GtkEntry.html#gtk-entry-get-icon-storage-type" title="gtk_entry_get_icon_storage_type ()">gtk_entry_get_icon_storage_type</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
140
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
141
|
+
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * <a class="link" href="GtkEntry.html#gtk-entry-get-icon-pixbuf" title="gtk_entry_get_icon_pixbuf ()">gtk_entry_get_icon_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
142
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
143
|
+
const <span class="returnvalue">gchar</span> * <a class="link" href="GtkEntry.html#gtk-entry-get-icon-stock" title="gtk_entry_get_icon_stock ()">gtk_entry_get_icon_stock</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
144
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
145
|
+
const <span class="returnvalue">gchar</span> * <a class="link" href="GtkEntry.html#gtk-entry-get-icon-name" title="gtk_entry_get_icon_name ()">gtk_entry_get_icon_name</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
146
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
147
|
+
<span class="returnvalue">GIcon</span> * <a class="link" href="GtkEntry.html#gtk-entry-get-icon-gicon" title="gtk_entry_get_icon_gicon ()">gtk_entry_get_icon_gicon</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
148
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
149
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-icon-activatable" title="gtk_entry_set_icon_activatable ()">gtk_entry_set_icon_activatable</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
150
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
151
|
+
<em class="parameter"><code><span class="type">gboolean</span> activatable</code></em>);
|
152
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkEntry.html#gtk-entry-get-icon-activatable" title="gtk_entry_get_icon_activatable ()">gtk_entry_get_icon_activatable</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
153
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
154
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-icon-sensitive" title="gtk_entry_set_icon_sensitive ()">gtk_entry_set_icon_sensitive</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
155
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
156
|
+
<em class="parameter"><code><span class="type">gboolean</span> sensitive</code></em>);
|
157
|
+
<span class="returnvalue">gboolean</span> <a class="link" href="GtkEntry.html#gtk-entry-get-icon-sensitive" title="gtk_entry_get_icon_sensitive ()">gtk_entry_get_icon_sensitive</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
158
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
159
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkEntry.html#gtk-entry-get-icon-at-pos" title="gtk_entry_get_icon_at_pos ()">gtk_entry_get_icon_at_pos</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
160
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
161
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);
|
162
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-text" title="gtk_entry_set_icon_tooltip_text ()">gtk_entry_set_icon_tooltip_text</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
163
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
164
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *tooltip</code></em>);
|
165
|
+
<span class="returnvalue">gchar</span> * <a class="link" href="GtkEntry.html#gtk-entry-get-icon-tooltip-text" title="gtk_entry_get_icon_tooltip_text ()">gtk_entry_get_icon_tooltip_text</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
166
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
167
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-markup" title="gtk_entry_set_icon_tooltip_markup ()">gtk_entry_set_icon_tooltip_markup</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
168
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
169
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *tooltip</code></em>);
|
170
|
+
<span class="returnvalue">gchar</span> * <a class="link" href="GtkEntry.html#gtk-entry-get-icon-tooltip-markup" title="gtk_entry_get_icon_tooltip_markup ()">gtk_entry_get_icon_tooltip_markup</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
171
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
172
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-icon-drag-source" title="gtk_entry_set_icon_drag_source ()">gtk_entry_set_icon_drag_source</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
173
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
174
|
+
<em class="parameter"><code><a class="link" href="gtk3-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>,
|
175
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);
|
176
|
+
<span class="returnvalue">gint</span> <a class="link" href="GtkEntry.html#gtk-entry-get-current-icon-drag-source" title="gtk_entry_get_current_icon_drag_source ()">gtk_entry_get_current_icon_drag_source</a>
|
177
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
178
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-get-icon-area" title="gtk_entry_get_icon_area ()">gtk_entry_get_icon_area</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
179
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
180
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *icon_area</code></em>);
|
181
|
+
enum <a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose">GtkInputPurpose</a>;
|
182
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-input-purpose" title="gtk_entry_set_input_purpose ()">gtk_entry_set_input_purpose</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
183
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="type">GtkInputPurpose</span></a> purpose</code></em>);
|
184
|
+
<a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="returnvalue">GtkInputPurpose</span></a> <a class="link" href="GtkEntry.html#gtk-entry-get-input-purpose" title="gtk_entry_get_input_purpose ()">gtk_entry_get_input_purpose</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
185
|
+
enum <a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints">GtkInputHints</a>;
|
186
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-input-hints" title="gtk_entry_set_input_hints ()">gtk_entry_set_input_hints</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
187
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="type">GtkInputHints</span></a> hints</code></em>);
|
188
|
+
<a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="returnvalue">GtkInputHints</span></a> <a class="link" href="GtkEntry.html#gtk-entry-get-input-hints" title="gtk_entry_get_input_hints ()">gtk_entry_get_input_hints</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
189
|
+
</pre>
|
190
|
+
</div>
|
191
|
+
<div class="refsect1">
|
192
|
+
<a name="GtkEntry.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
193
|
+
<pre class="synopsis">
|
194
|
+
GObject
|
195
|
+
+----GInitiallyUnowned
|
196
|
+
+----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
|
197
|
+
+----GtkEntry
|
198
|
+
+----<a class="link" href="GtkSearchEntry.html" title="GtkSearchEntry">GtkSearchEntry</a>
|
199
|
+
+----<a class="link" href="GtkSpinButton.html" title="GtkSpinButton">GtkSpinButton</a>
|
200
|
+
</pre>
|
201
|
+
</div>
|
202
|
+
<div class="refsect1">
|
203
|
+
<a name="GtkEntry.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
204
|
+
<p>
|
205
|
+
GtkEntry implements
|
206
|
+
AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>, <a class="link" href="GtkEditable.html" title="GtkEditable">GtkEditable</a> and <a class="link" href="GtkCellEditable.html" title="GtkCellEditable">GtkCellEditable</a>.</p>
|
207
|
+
</div>
|
208
|
+
<div class="refsect1">
|
209
|
+
<a name="GtkEntry.properties"></a><h2>Properties</h2>
|
210
|
+
<pre class="synopsis">
|
211
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--activates-default" title='The "activates-default" property'>activates-default</a>" <span class="type">gboolean</span> : Read / Write
|
212
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--attributes" title='The "attributes" property'>attributes</a>" <span class="type">PangoAttrList</span>* : Read / Write
|
213
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--buffer" title='The "buffer" property'>buffer</a>" <a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a>* : Read / Write / Construct
|
214
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--caps-lock-warning" title='The "caps-lock-warning" property'>caps-lock-warning</a>" <span class="type">gboolean</span> : Read / Write
|
215
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--completion" title='The "completion" property'>completion</a>" <a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="type">GtkEntryCompletion</span></a>* : Read / Write
|
216
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--cursor-position" title='The "cursor-position" property'>cursor-position</a>" <span class="type">gint</span> : Read
|
217
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--editable" title='The "editable" property'>editable</a>" <span class="type">gboolean</span> : Read / Write
|
218
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--has-frame" title='The "has-frame" property'>has-frame</a>" <span class="type">gboolean</span> : Read / Write
|
219
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--im-module" title='The "im-module" property'>im-module</a>" <span class="type">gchar</span>* : Read / Write
|
220
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--inner-border" title='The "inner-border" property'>inner-border</a>" <a class="link" href="GtkStyleContext.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read / Write
|
221
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--input-hints" title='The "input-hints" property'>input-hints</a>" <a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="type">GtkInputHints</span></a> : Read / Write
|
222
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--input-purpose" title='The "input-purpose" property'>input-purpose</a>" <a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="type">GtkInputPurpose</span></a> : Read / Write
|
223
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--invisible-char" title='The "invisible-char" property'>invisible-char</a>" <span class="type">guint</span> : Read / Write
|
224
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--invisible-char-set" title='The "invisible-char-set" property'>invisible-char-set</a>" <span class="type">gboolean</span> : Read / Write
|
225
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--max-length" title='The "max-length" property'>max-length</a>" <span class="type">gint</span> : Read / Write
|
226
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--overwrite-mode" title='The "overwrite-mode" property'>overwrite-mode</a>" <span class="type">gboolean</span> : Read / Write
|
227
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--placeholder-text" title='The "placeholder-text" property'>placeholder-text</a>" <span class="type">gchar</span>* : Read / Write
|
228
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-activatable" title='The "primary-icon-activatable" property'>primary-icon-activatable</a>" <span class="type">gboolean</span> : Read / Write
|
229
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-gicon" title='The "primary-icon-gicon" property'>primary-icon-gicon</a>" <span class="type">GIcon</span>* : Read / Write
|
230
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-name" title='The "primary-icon-name" property'>primary-icon-name</a>" <span class="type">gchar</span>* : Read / Write
|
231
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-pixbuf" title='The "primary-icon-pixbuf" property'>primary-icon-pixbuf</a>" <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>* : Read / Write
|
232
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-sensitive" title='The "primary-icon-sensitive" property'>primary-icon-sensitive</a>" <span class="type">gboolean</span> : Read / Write
|
233
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-stock" title='The "primary-icon-stock" property'>primary-icon-stock</a>" <span class="type">gchar</span>* : Read / Write
|
234
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-storage-type" title='The "primary-icon-storage-type" property'>primary-icon-storage-type</a>" <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="type">GtkImageType</span></a> : Read
|
235
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-tooltip-markup" title='The "primary-icon-tooltip-markup" property'>primary-icon-tooltip-markup</a>" <span class="type">gchar</span>* : Read / Write
|
236
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-tooltip-text" title='The "primary-icon-tooltip-text" property'>primary-icon-tooltip-text</a>" <span class="type">gchar</span>* : Read / Write
|
237
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--progress-fraction" title='The "progress-fraction" property'>progress-fraction</a>" <span class="type">gdouble</span> : Read / Write
|
238
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--progress-pulse-step" title='The "progress-pulse-step" property'>progress-pulse-step</a>" <span class="type">gdouble</span> : Read / Write
|
239
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--scroll-offset" title='The "scroll-offset" property'>scroll-offset</a>" <span class="type">gint</span> : Read
|
240
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-activatable" title='The "secondary-icon-activatable" property'>secondary-icon-activatable</a>" <span class="type">gboolean</span> : Read / Write
|
241
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-gicon" title='The "secondary-icon-gicon" property'>secondary-icon-gicon</a>" <span class="type">GIcon</span>* : Read / Write
|
242
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-name" title='The "secondary-icon-name" property'>secondary-icon-name</a>" <span class="type">gchar</span>* : Read / Write
|
243
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-pixbuf" title='The "secondary-icon-pixbuf" property'>secondary-icon-pixbuf</a>" <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>* : Read / Write
|
244
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-sensitive" title='The "secondary-icon-sensitive" property'>secondary-icon-sensitive</a>" <span class="type">gboolean</span> : Read / Write
|
245
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-stock" title='The "secondary-icon-stock" property'>secondary-icon-stock</a>" <span class="type">gchar</span>* : Read / Write
|
246
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-storage-type" title='The "secondary-icon-storage-type" property'>secondary-icon-storage-type</a>" <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="type">GtkImageType</span></a> : Read
|
247
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-tooltip-markup" title='The "secondary-icon-tooltip-markup" property'>secondary-icon-tooltip-markup</a>" <span class="type">gchar</span>* : Read / Write
|
248
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-tooltip-text" title='The "secondary-icon-tooltip-text" property'>secondary-icon-tooltip-text</a>" <span class="type">gchar</span>* : Read / Write
|
249
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--selection-bound" title='The "selection-bound" property'>selection-bound</a>" <span class="type">gint</span> : Read
|
250
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--shadow-type" title='The "shadow-type" property'>shadow-type</a>" <a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> : Read / Write
|
251
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--text" title='The "text" property'>text</a>" <span class="type">gchar</span>* : Read / Write
|
252
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--text-length" title='The "text-length" property'>text-length</a>" <span class="type">guint</span> : Read
|
253
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--truncate-multiline" title='The "truncate-multiline" property'>truncate-multiline</a>" <span class="type">gboolean</span> : Read / Write
|
254
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--visibility" title='The "visibility" property'>visibility</a>" <span class="type">gboolean</span> : Read / Write
|
255
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--width-chars" title='The "width-chars" property'>width-chars</a>" <span class="type">gint</span> : Read / Write
|
256
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--xalign" title='The "xalign" property'>xalign</a>" <span class="type">gfloat</span> : Read / Write
|
257
|
+
</pre>
|
258
|
+
</div>
|
259
|
+
<div class="refsect1">
|
260
|
+
<a name="GtkEntry.style-properties"></a><h2>Style Properties</h2>
|
261
|
+
<pre class="synopsis">
|
262
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--s-icon-prelight" title='The "icon-prelight" style property'>icon-prelight</a>" <span class="type">gboolean</span> : Read
|
263
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--s-inner-border" title='The "inner-border" style property'>inner-border</a>" <a class="link" href="GtkStyleContext.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read
|
264
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--s-invisible-char" title='The "invisible-char" style property'>invisible-char</a>" <span class="type">guint</span> : Read
|
265
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--s-progress-border" title='The "progress-border" style property'>progress-border</a>" <a class="link" href="GtkStyleContext.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read
|
266
|
+
</pre>
|
267
|
+
</div>
|
268
|
+
<div class="refsect1">
|
269
|
+
<a name="GtkEntry.signals"></a><h2>Signals</h2>
|
270
|
+
<pre class="synopsis">
|
271
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-activate" title='The "activate" signal'>activate</a>" : <code class="literal">Action</code>
|
272
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-backspace" title='The "backspace" signal'>backspace</a>" : <code class="literal">Action</code>
|
273
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-copy-clipboard" title='The "copy-clipboard" signal'>copy-clipboard</a>" : <code class="literal">Action</code>
|
274
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-cut-clipboard" title='The "cut-clipboard" signal'>cut-clipboard</a>" : <code class="literal">Action</code>
|
275
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-delete-from-cursor" title='The "delete-from-cursor" signal'>delete-from-cursor</a>" : <code class="literal">Action</code>
|
276
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-icon-press" title='The "icon-press" signal'>icon-press</a>" : <code class="literal">Run Last</code>
|
277
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-icon-release" title='The "icon-release" signal'>icon-release</a>" : <code class="literal">Run Last</code>
|
278
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-insert-at-cursor" title='The "insert-at-cursor" signal'>insert-at-cursor</a>" : <code class="literal">Action</code>
|
279
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" : <code class="literal">Action</code>
|
280
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-paste-clipboard" title='The "paste-clipboard" signal'>paste-clipboard</a>" : <code class="literal">Action</code>
|
281
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-populate-popup" title='The "populate-popup" signal'>populate-popup</a>" : <code class="literal">Run Last</code>
|
282
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-preedit-changed" title='The "preedit-changed" signal'>preedit-changed</a>" : <code class="literal">Action</code>
|
283
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-toggle-overwrite" title='The "toggle-overwrite" signal'>toggle-overwrite</a>" : <code class="literal">Action</code>
|
284
|
+
</pre>
|
285
|
+
</div>
|
286
|
+
<div class="refsect1">
|
287
|
+
<a name="GtkEntry.description"></a><h2>Description</h2>
|
288
|
+
<p>
|
289
|
+
The <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> widget is a single line text entry
|
290
|
+
widget. A fairly large set of key bindings are supported
|
291
|
+
by default. If the entered text is longer than the allocation
|
292
|
+
of the widget, the widget will scroll so that the cursor
|
293
|
+
position is visible.
|
294
|
+
</p>
|
295
|
+
<p>
|
296
|
+
When using an entry for passwords and other sensitive information,
|
297
|
+
it can be put into "password mode" using <a class="link" href="GtkEntry.html#gtk-entry-set-visibility" title="gtk_entry_set_visibility ()"><code class="function">gtk_entry_set_visibility()</code></a>.
|
298
|
+
In this mode, entered text is displayed using a 'invisible' character.
|
299
|
+
By default, GTK+ picks the best invisible character that is available
|
300
|
+
in the current font, but it can be changed with
|
301
|
+
<a class="link" href="GtkEntry.html#gtk-entry-set-invisible-char" title="gtk_entry_set_invisible_char ()"><code class="function">gtk_entry_set_invisible_char()</code></a>. Since 2.16, GTK+ displays a warning
|
302
|
+
when Caps Lock or input methods might interfere with entering text in
|
303
|
+
a password entry. The warning can be turned off with the
|
304
|
+
<a class="link" href="GtkEntry.html#GtkEntry--caps-lock-warning" title='The "caps-lock-warning" property'><span class="type">"caps-lock-warning"</span></a> property.
|
305
|
+
</p>
|
306
|
+
<p>
|
307
|
+
Since 2.16, GtkEntry has the ability to display progress or activity
|
308
|
+
information behind the text. To make an entry display such information,
|
309
|
+
use <a class="link" href="GtkEntry.html#gtk-entry-set-progress-fraction" title="gtk_entry_set_progress_fraction ()"><code class="function">gtk_entry_set_progress_fraction()</code></a> or <a class="link" href="GtkEntry.html#gtk-entry-set-progress-pulse-step" title="gtk_entry_set_progress_pulse_step ()"><code class="function">gtk_entry_set_progress_pulse_step()</code></a>.
|
310
|
+
</p>
|
311
|
+
<p>
|
312
|
+
Additionally, GtkEntry can show icons at either side of the entry. These
|
313
|
+
icons can be activatable by clicking, can be set up as drag source and
|
314
|
+
can have tooltips. To add an icon, use <a class="link" href="GtkEntry.html#gtk-entry-set-icon-from-gicon" title="gtk_entry_set_icon_from_gicon ()"><code class="function">gtk_entry_set_icon_from_gicon()</code></a> or
|
315
|
+
one of the various other functions that set an icon from a stock id, an
|
316
|
+
icon name or a pixbuf. To trigger an action when the user clicks an icon,
|
317
|
+
connect to the <a class="link" href="GtkEntry.html#GtkEntry-icon-press" title='The "icon-press" signal'><span class="type">"icon-press"</span></a> signal. To allow DND operations
|
318
|
+
from an icon, use <a class="link" href="GtkEntry.html#gtk-entry-set-icon-drag-source" title="gtk_entry_set_icon_drag_source ()"><code class="function">gtk_entry_set_icon_drag_source()</code></a>. To set a tooltip on
|
319
|
+
an icon, use <a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-text" title="gtk_entry_set_icon_tooltip_text ()"><code class="function">gtk_entry_set_icon_tooltip_text()</code></a> or the corresponding function
|
320
|
+
for markup.
|
321
|
+
</p>
|
322
|
+
<p>
|
323
|
+
Note that functionality or information that is only available by clicking
|
324
|
+
on an icon in an entry may not be accessible at all to users which are not
|
325
|
+
able to use a mouse or other pointing device. It is therefore recommended
|
326
|
+
that any such functionality should also be available by other means, e.g.
|
327
|
+
via the context menu of the entry.
|
328
|
+
</p>
|
329
|
+
</div>
|
330
|
+
<div class="refsect1">
|
331
|
+
<a name="GtkEntry.details"></a><h2>Details</h2>
|
332
|
+
<div class="refsect2">
|
333
|
+
<a name="GtkEntry-struct"></a><h3>struct GtkEntry</h3>
|
334
|
+
<pre class="programlisting">struct GtkEntry;</pre>
|
335
|
+
</div>
|
336
|
+
<hr>
|
337
|
+
<div class="refsect2">
|
338
|
+
<a name="gtk-entry-new"></a><h3>gtk_entry_new ()</h3>
|
339
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_entry_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
340
|
+
<p>
|
341
|
+
Creates a new entry.
|
342
|
+
</p>
|
343
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
344
|
+
<colgroup>
|
345
|
+
<col align="left" valign="top">
|
346
|
+
<col>
|
347
|
+
</colgroup>
|
348
|
+
<tbody><tr>
|
349
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
350
|
+
<td>a new <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.</td>
|
351
|
+
</tr></tbody>
|
352
|
+
</table></div>
|
353
|
+
</div>
|
354
|
+
<hr>
|
355
|
+
<div class="refsect2">
|
356
|
+
<a name="gtk-entry-new-with-buffer"></a><h3>gtk_entry_new_with_buffer ()</h3>
|
357
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_entry_new_with_buffer (<em class="parameter"><code><a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> *buffer</code></em>);</pre>
|
358
|
+
<p>
|
359
|
+
Creates a new entry with the specified text buffer.
|
360
|
+
</p>
|
361
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
362
|
+
<colgroup>
|
363
|
+
<col align="left" valign="top">
|
364
|
+
<col>
|
365
|
+
</colgroup>
|
366
|
+
<tbody>
|
367
|
+
<tr>
|
368
|
+
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
369
|
+
<td>The buffer to use for the new <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.</td>
|
370
|
+
</tr>
|
371
|
+
<tr>
|
372
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
373
|
+
<td>a new <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
374
|
+
</td>
|
375
|
+
</tr>
|
376
|
+
</tbody>
|
377
|
+
</table></div>
|
378
|
+
<p class="since">Since 2.18</p>
|
379
|
+
</div>
|
380
|
+
<hr>
|
381
|
+
<div class="refsect2">
|
382
|
+
<a name="gtk-entry-get-buffer"></a><h3>gtk_entry_get_buffer ()</h3>
|
383
|
+
<pre class="programlisting"><a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="returnvalue">GtkEntryBuffer</span></a> * gtk_entry_get_buffer (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
384
|
+
<p>
|
385
|
+
Get the <a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> object which holds the text for
|
386
|
+
this widget.
|
387
|
+
</p>
|
388
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
389
|
+
<colgroup>
|
390
|
+
<col align="left" valign="top">
|
391
|
+
<col>
|
392
|
+
</colgroup>
|
393
|
+
<tbody>
|
394
|
+
<tr>
|
395
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
396
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
397
|
+
</td>
|
398
|
+
</tr>
|
399
|
+
<tr>
|
400
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
401
|
+
<td>A <a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> object. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
402
|
+
</td>
|
403
|
+
</tr>
|
404
|
+
</tbody>
|
405
|
+
</table></div>
|
406
|
+
<p class="since">Since 2.18</p>
|
407
|
+
</div>
|
408
|
+
<hr>
|
409
|
+
<div class="refsect2">
|
410
|
+
<a name="gtk-entry-set-buffer"></a><h3>gtk_entry_set_buffer ()</h3>
|
411
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_buffer (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
412
|
+
<em class="parameter"><code><a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> *buffer</code></em>);</pre>
|
413
|
+
<p>
|
414
|
+
Set the <a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> object which holds the text for
|
415
|
+
this widget.
|
416
|
+
</p>
|
417
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
418
|
+
<colgroup>
|
419
|
+
<col align="left" valign="top">
|
420
|
+
<col>
|
421
|
+
</colgroup>
|
422
|
+
<tbody>
|
423
|
+
<tr>
|
424
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
425
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
426
|
+
</td>
|
427
|
+
</tr>
|
428
|
+
<tr>
|
429
|
+
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
430
|
+
<td>a <a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a>
|
431
|
+
</td>
|
432
|
+
</tr>
|
433
|
+
</tbody>
|
434
|
+
</table></div>
|
435
|
+
<p class="since">Since 2.18</p>
|
436
|
+
</div>
|
437
|
+
<hr>
|
438
|
+
<div class="refsect2">
|
439
|
+
<a name="gtk-entry-set-text"></a><h3>gtk_entry_set_text ()</h3>
|
440
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_text (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
441
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>);</pre>
|
442
|
+
<p>
|
443
|
+
Sets the text in the widget to the given
|
444
|
+
value, replacing the current contents.
|
445
|
+
</p>
|
446
|
+
<p>
|
447
|
+
See <a class="link" href="GtkEntryBuffer.html#gtk-entry-buffer-set-text" title="gtk_entry_buffer_set_text ()"><code class="function">gtk_entry_buffer_set_text()</code></a>.
|
448
|
+
</p>
|
449
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
450
|
+
<colgroup>
|
451
|
+
<col align="left" valign="top">
|
452
|
+
<col>
|
453
|
+
</colgroup>
|
454
|
+
<tbody>
|
455
|
+
<tr>
|
456
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
457
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
458
|
+
</td>
|
459
|
+
</tr>
|
460
|
+
<tr>
|
461
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
462
|
+
<td>the new text</td>
|
463
|
+
</tr>
|
464
|
+
</tbody>
|
465
|
+
</table></div>
|
466
|
+
</div>
|
467
|
+
<hr>
|
468
|
+
<div class="refsect2">
|
469
|
+
<a name="gtk-entry-get-text"></a><h3>gtk_entry_get_text ()</h3>
|
470
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> * gtk_entry_get_text (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
471
|
+
<p>
|
472
|
+
Retrieves the contents of the entry widget.
|
473
|
+
See also <a class="link" href="GtkEditable.html#gtk-editable-get-chars" title="gtk_editable_get_chars ()"><code class="function">gtk_editable_get_chars()</code></a>.
|
474
|
+
</p>
|
475
|
+
<p>
|
476
|
+
This is equivalent to:
|
477
|
+
</p>
|
478
|
+
<p>
|
479
|
+
</p>
|
480
|
+
<div class="informalexample">
|
481
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
482
|
+
<tbody>
|
483
|
+
<tr>
|
484
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
485
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="GtkEntryBuffer.html#gtk-entry-buffer-get-text">gtk_entry_buffer_get_text</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function"><a href="GtkEntry.html#gtk-entry-get-buffer">gtk_entry_get_buffer</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">entry</span><span class="symbol">));</span></pre></td>
|
486
|
+
</tr>
|
487
|
+
</tbody>
|
488
|
+
</table>
|
489
|
+
</div>
|
490
|
+
|
491
|
+
<p>
|
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>entry</code></em> :</span></p></td>
|
501
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
502
|
+
</td>
|
503
|
+
</tr>
|
504
|
+
<tr>
|
505
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
506
|
+
<td>a pointer to the contents of the widget as a
|
507
|
+
string. This string points to internally allocated
|
508
|
+
storage in the widget and must not be freed, modified or
|
509
|
+
stored.</td>
|
510
|
+
</tr>
|
511
|
+
</tbody>
|
512
|
+
</table></div>
|
513
|
+
</div>
|
514
|
+
<hr>
|
515
|
+
<div class="refsect2">
|
516
|
+
<a name="gtk-entry-get-text-length"></a><h3>gtk_entry_get_text_length ()</h3>
|
517
|
+
<pre class="programlisting"><span class="returnvalue">guint16</span> gtk_entry_get_text_length (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
518
|
+
<p>
|
519
|
+
Retrieves the current length of the text in
|
520
|
+
<em class="parameter"><code>entry</code></em>.
|
521
|
+
</p>
|
522
|
+
<p>
|
523
|
+
This is equivalent to:
|
524
|
+
</p>
|
525
|
+
<p>
|
526
|
+
</p>
|
527
|
+
<div class="informalexample">
|
528
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
529
|
+
<tbody>
|
530
|
+
<tr>
|
531
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
532
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="GtkEntryBuffer.html#gtk-entry-buffer-get-length">gtk_entry_buffer_get_length</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function"><a href="GtkEntry.html#gtk-entry-get-buffer">gtk_entry_get_buffer</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">entry</span><span class="symbol">));</span></pre></td>
|
533
|
+
</tr>
|
534
|
+
</tbody>
|
535
|
+
</table>
|
536
|
+
</div>
|
537
|
+
|
538
|
+
<p>
|
539
|
+
</p>
|
540
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
541
|
+
<colgroup>
|
542
|
+
<col align="left" valign="top">
|
543
|
+
<col>
|
544
|
+
</colgroup>
|
545
|
+
<tbody>
|
546
|
+
<tr>
|
547
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
548
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
549
|
+
</td>
|
550
|
+
</tr>
|
551
|
+
<tr>
|
552
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
553
|
+
<td>the current number of characters
|
554
|
+
in <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>, or 0 if there are none.</td>
|
555
|
+
</tr>
|
556
|
+
</tbody>
|
557
|
+
</table></div>
|
558
|
+
<p class="since">Since 2.14</p>
|
559
|
+
</div>
|
560
|
+
<hr>
|
561
|
+
<div class="refsect2">
|
562
|
+
<a name="gtk-entry-get-text-area"></a><h3>gtk_entry_get_text_area ()</h3>
|
563
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_get_text_area (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
564
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *text_area</code></em>);</pre>
|
565
|
+
<p>
|
566
|
+
Gets the area where the entry's text is drawn. This function is
|
567
|
+
useful when drawing something to the entry in a draw callback.
|
568
|
+
</p>
|
569
|
+
<p>
|
570
|
+
If the entry is not realized, <em class="parameter"><code>text_area</code></em> is filled with zeros.
|
571
|
+
</p>
|
572
|
+
<p>
|
573
|
+
See also <a class="link" href="GtkEntry.html#gtk-entry-get-icon-area" title="gtk_entry_get_icon_area ()"><code class="function">gtk_entry_get_icon_area()</code></a>.
|
574
|
+
</p>
|
575
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
576
|
+
<colgroup>
|
577
|
+
<col align="left" valign="top">
|
578
|
+
<col>
|
579
|
+
</colgroup>
|
580
|
+
<tbody>
|
581
|
+
<tr>
|
582
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
583
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
584
|
+
</td>
|
585
|
+
</tr>
|
586
|
+
<tr>
|
587
|
+
<td><p><span class="term"><em class="parameter"><code>text_area</code></em> :</span></p></td>
|
588
|
+
<td>Return location for the text area. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
589
|
+
</td>
|
590
|
+
</tr>
|
591
|
+
</tbody>
|
592
|
+
</table></div>
|
593
|
+
<p class="since">Since 3.0</p>
|
594
|
+
</div>
|
595
|
+
<hr>
|
596
|
+
<div class="refsect2">
|
597
|
+
<a name="gtk-entry-set-visibility"></a><h3>gtk_entry_set_visibility ()</h3>
|
598
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_visibility (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
599
|
+
<em class="parameter"><code><span class="type">gboolean</span> visible</code></em>);</pre>
|
600
|
+
<p>
|
601
|
+
Sets whether the contents of the entry are visible or not.
|
602
|
+
When visibility is set to <code class="literal">FALSE</code>, characters are displayed
|
603
|
+
as the invisible char, and will also appear that way when
|
604
|
+
the text in the entry widget is copied elsewhere.
|
605
|
+
</p>
|
606
|
+
<p>
|
607
|
+
By default, GTK+ picks the best invisible character available
|
608
|
+
in the current font, but it can be changed with
|
609
|
+
<a class="link" href="GtkEntry.html#gtk-entry-set-invisible-char" title="gtk_entry_set_invisible_char ()"><code class="function">gtk_entry_set_invisible_char()</code></a>.
|
610
|
+
</p>
|
611
|
+
<p>
|
612
|
+
Note that you probably want to set <a class="link" href="GtkEntry.html#GtkEntry--input-purpose" title='The "input-purpose" property'><span class="type">"input-purpose"</span></a>
|
613
|
+
to <a class="link" href="GtkEntry.html#GTK-INPUT-PURPOSE-PASSWORD:CAPS"><code class="literal">GTK_INPUT_PURPOSE_PASSWORD</code></a> or <a class="link" href="GtkEntry.html#GTK-INPUT-PURPOSE-PIN:CAPS"><code class="literal">GTK_INPUT_PURPOSE_PIN</code></a> to
|
614
|
+
inform input methods about the purpose of this entry,
|
615
|
+
in addition to setting visibility to <code class="literal">FALSE</code>.
|
616
|
+
</p>
|
617
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
618
|
+
<colgroup>
|
619
|
+
<col align="left" valign="top">
|
620
|
+
<col>
|
621
|
+
</colgroup>
|
622
|
+
<tbody>
|
623
|
+
<tr>
|
624
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
625
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
626
|
+
</td>
|
627
|
+
</tr>
|
628
|
+
<tr>
|
629
|
+
<td><p><span class="term"><em class="parameter"><code>visible</code></em> :</span></p></td>
|
630
|
+
<td>
|
631
|
+
<code class="literal">TRUE</code> if the contents of the entry are displayed
|
632
|
+
as plaintext</td>
|
633
|
+
</tr>
|
634
|
+
</tbody>
|
635
|
+
</table></div>
|
636
|
+
</div>
|
637
|
+
<hr>
|
638
|
+
<div class="refsect2">
|
639
|
+
<a name="gtk-entry-set-invisible-char"></a><h3>gtk_entry_set_invisible_char ()</h3>
|
640
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_invisible_char (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
641
|
+
<em class="parameter"><code><span class="type">gunichar</span> ch</code></em>);</pre>
|
642
|
+
<p>
|
643
|
+
Sets the character to use in place of the actual text when
|
644
|
+
<a class="link" href="GtkEntry.html#gtk-entry-set-visibility" title="gtk_entry_set_visibility ()"><code class="function">gtk_entry_set_visibility()</code></a> has been called to set text visibility
|
645
|
+
to <code class="literal">FALSE</code>. i.e. this is the character used in "password mode" to
|
646
|
+
show the user how many characters have been typed. By default, GTK+
|
647
|
+
picks the best invisible char available in the current font. If you
|
648
|
+
set the invisible char to 0, then the user will get no feedback
|
649
|
+
at all; there will be no text on the screen as they type.
|
650
|
+
</p>
|
651
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
652
|
+
<colgroup>
|
653
|
+
<col align="left" valign="top">
|
654
|
+
<col>
|
655
|
+
</colgroup>
|
656
|
+
<tbody>
|
657
|
+
<tr>
|
658
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
659
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
660
|
+
</td>
|
661
|
+
</tr>
|
662
|
+
<tr>
|
663
|
+
<td><p><span class="term"><em class="parameter"><code>ch</code></em> :</span></p></td>
|
664
|
+
<td>a Unicode character</td>
|
665
|
+
</tr>
|
666
|
+
</tbody>
|
667
|
+
</table></div>
|
668
|
+
</div>
|
669
|
+
<hr>
|
670
|
+
<div class="refsect2">
|
671
|
+
<a name="gtk-entry-unset-invisible-char"></a><h3>gtk_entry_unset_invisible_char ()</h3>
|
672
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_unset_invisible_char (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
673
|
+
<p>
|
674
|
+
Unsets the invisible char previously set with
|
675
|
+
<a class="link" href="GtkEntry.html#gtk-entry-set-invisible-char" title="gtk_entry_set_invisible_char ()"><code class="function">gtk_entry_set_invisible_char()</code></a>. So that the
|
676
|
+
default invisible char is used again.
|
677
|
+
</p>
|
678
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
679
|
+
<colgroup>
|
680
|
+
<col align="left" valign="top">
|
681
|
+
<col>
|
682
|
+
</colgroup>
|
683
|
+
<tbody><tr>
|
684
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
685
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
686
|
+
</td>
|
687
|
+
</tr></tbody>
|
688
|
+
</table></div>
|
689
|
+
<p class="since">Since 2.16</p>
|
690
|
+
</div>
|
691
|
+
<hr>
|
692
|
+
<div class="refsect2">
|
693
|
+
<a name="gtk-entry-set-max-length"></a><h3>gtk_entry_set_max_length ()</h3>
|
694
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_max_length (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
695
|
+
<em class="parameter"><code><span class="type">gint</span> max</code></em>);</pre>
|
696
|
+
<p>
|
697
|
+
Sets the maximum allowed length of the contents of the widget. If
|
698
|
+
the current contents are longer than the given length, then they
|
699
|
+
will be truncated to fit.
|
700
|
+
</p>
|
701
|
+
<p>
|
702
|
+
This is equivalent to:
|
703
|
+
</p>
|
704
|
+
<p>
|
705
|
+
</p>
|
706
|
+
<div class="informalexample">
|
707
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
708
|
+
<tbody>
|
709
|
+
<tr>
|
710
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
711
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="GtkEntryBuffer.html#gtk-entry-buffer-set-max-length">gtk_entry_buffer_set_max_length</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function"><a href="GtkEntry.html#gtk-entry-get-buffer">gtk_entry_get_buffer</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">entry</span><span class="symbol">),</span><span class="normal"> max</span><span class="symbol">);</span></pre></td>
|
712
|
+
</tr>
|
713
|
+
</tbody>
|
714
|
+
</table>
|
715
|
+
</div>
|
716
|
+
|
717
|
+
<p>
|
718
|
+
</p>
|
719
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
720
|
+
<colgroup>
|
721
|
+
<col align="left" valign="top">
|
722
|
+
<col>
|
723
|
+
</colgroup>
|
724
|
+
<tbody>
|
725
|
+
<tr>
|
726
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
727
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
728
|
+
</td>
|
729
|
+
</tr>
|
730
|
+
<tr>
|
731
|
+
<td><p><span class="term"><em class="parameter"><code>max</code></em> :</span></p></td>
|
732
|
+
<td>the maximum length of the entry, or 0 for no maximum.
|
733
|
+
(other than the maximum length of entries.) The value passed in will
|
734
|
+
be clamped to the range 0-65536.</td>
|
735
|
+
</tr>
|
736
|
+
</tbody>
|
737
|
+
</table></div>
|
738
|
+
</div>
|
739
|
+
<hr>
|
740
|
+
<div class="refsect2">
|
741
|
+
<a name="gtk-entry-get-activates-default"></a><h3>gtk_entry_get_activates_default ()</h3>
|
742
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_entry_get_activates_default (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
743
|
+
<p>
|
744
|
+
Retrieves the value set by <a class="link" href="GtkEntry.html#gtk-entry-set-activates-default" title="gtk_entry_set_activates_default ()"><code class="function">gtk_entry_set_activates_default()</code></a>.
|
745
|
+
</p>
|
746
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
747
|
+
<colgroup>
|
748
|
+
<col align="left" valign="top">
|
749
|
+
<col>
|
750
|
+
</colgroup>
|
751
|
+
<tbody>
|
752
|
+
<tr>
|
753
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
754
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
755
|
+
</td>
|
756
|
+
</tr>
|
757
|
+
<tr>
|
758
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
759
|
+
<td>
|
760
|
+
<code class="literal">TRUE</code> if the entry will activate the default widget</td>
|
761
|
+
</tr>
|
762
|
+
</tbody>
|
763
|
+
</table></div>
|
764
|
+
</div>
|
765
|
+
<hr>
|
766
|
+
<div class="refsect2">
|
767
|
+
<a name="gtk-entry-get-has-frame"></a><h3>gtk_entry_get_has_frame ()</h3>
|
768
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_entry_get_has_frame (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
769
|
+
<p>
|
770
|
+
Gets the value set by <a class="link" href="GtkEntry.html#gtk-entry-set-has-frame" title="gtk_entry_set_has_frame ()"><code class="function">gtk_entry_set_has_frame()</code></a>.
|
771
|
+
</p>
|
772
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
773
|
+
<colgroup>
|
774
|
+
<col align="left" valign="top">
|
775
|
+
<col>
|
776
|
+
</colgroup>
|
777
|
+
<tbody>
|
778
|
+
<tr>
|
779
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
780
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
781
|
+
</td>
|
782
|
+
</tr>
|
783
|
+
<tr>
|
784
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
785
|
+
<td>whether the entry has a beveled frame</td>
|
786
|
+
</tr>
|
787
|
+
</tbody>
|
788
|
+
</table></div>
|
789
|
+
</div>
|
790
|
+
<hr>
|
791
|
+
<div class="refsect2">
|
792
|
+
<a name="gtk-entry-get-inner-border"></a><h3>gtk_entry_get_inner_border ()</h3>
|
793
|
+
<pre class="programlisting">const <a class="link" href="GtkStyleContext.html#GtkBorder"><span class="returnvalue">GtkBorder</span></a> * gtk_entry_get_inner_border (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
794
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
795
|
+
<h3 class="title">Warning</h3>
|
796
|
+
<p><code class="literal">gtk_entry_get_inner_border</code> has been deprecated since version 3.4 and should not be used in newly-written code. Use the standard border and padding CSS properties (through
|
797
|
+
objects like <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a> and <a class="link" href="GtkCssProvider.html" title="GtkCssProvider"><span class="type">GtkCssProvider</span></a>); the value returned by
|
798
|
+
this function is ignored by <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.</p>
|
799
|
+
</div>
|
800
|
+
<p>
|
801
|
+
This function returns the entry's <a class="link" href="GtkEntry.html#GtkEntry--inner-border" title='The "inner-border" property'><span class="type">"inner-border"</span></a> property. See
|
802
|
+
<a class="link" href="GtkEntry.html#gtk-entry-set-inner-border" title="gtk_entry_set_inner_border ()"><code class="function">gtk_entry_set_inner_border()</code></a> for more information.
|
803
|
+
</p>
|
804
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
805
|
+
<colgroup>
|
806
|
+
<col align="left" valign="top">
|
807
|
+
<col>
|
808
|
+
</colgroup>
|
809
|
+
<tbody>
|
810
|
+
<tr>
|
811
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
812
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
813
|
+
</td>
|
814
|
+
</tr>
|
815
|
+
<tr>
|
816
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
817
|
+
<td>the entry's <a class="link" href="GtkStyleContext.html#GtkBorder"><span class="type">GtkBorder</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if none was set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
818
|
+
</td>
|
819
|
+
</tr>
|
820
|
+
</tbody>
|
821
|
+
</table></div>
|
822
|
+
<p class="since">Since 2.10</p>
|
823
|
+
</div>
|
824
|
+
<hr>
|
825
|
+
<div class="refsect2">
|
826
|
+
<a name="gtk-entry-get-width-chars"></a><h3>gtk_entry_get_width_chars ()</h3>
|
827
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_entry_get_width_chars (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
828
|
+
<p>
|
829
|
+
Gets the value set by <a class="link" href="GtkEntry.html#gtk-entry-set-width-chars" title="gtk_entry_set_width_chars ()"><code class="function">gtk_entry_set_width_chars()</code></a>.
|
830
|
+
</p>
|
831
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
832
|
+
<colgroup>
|
833
|
+
<col align="left" valign="top">
|
834
|
+
<col>
|
835
|
+
</colgroup>
|
836
|
+
<tbody>
|
837
|
+
<tr>
|
838
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
839
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
840
|
+
</td>
|
841
|
+
</tr>
|
842
|
+
<tr>
|
843
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
844
|
+
<td>number of chars to request space for, or negative if unset</td>
|
845
|
+
</tr>
|
846
|
+
</tbody>
|
847
|
+
</table></div>
|
848
|
+
</div>
|
849
|
+
<hr>
|
850
|
+
<div class="refsect2">
|
851
|
+
<a name="gtk-entry-set-activates-default"></a><h3>gtk_entry_set_activates_default ()</h3>
|
852
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_activates_default (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
853
|
+
<em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);</pre>
|
854
|
+
<p>
|
855
|
+
If <em class="parameter"><code>setting</code></em> is <code class="literal">TRUE</code>, pressing Enter in the <em class="parameter"><code>entry</code></em> will activate the default
|
856
|
+
widget for the window containing the entry. This usually means that
|
857
|
+
the dialog box containing the entry will be closed, since the default
|
858
|
+
widget is usually one of the dialog buttons.
|
859
|
+
</p>
|
860
|
+
<p>
|
861
|
+
(For experts: if <em class="parameter"><code>setting</code></em> is <code class="literal">TRUE</code>, the entry calls
|
862
|
+
<a class="link" href="GtkWindow.html#gtk-window-activate-default" title="gtk_window_activate_default ()"><code class="function">gtk_window_activate_default()</code></a> on the window containing the entry, in
|
863
|
+
the default handler for the <a class="link" href="GtkEntry.html#GtkEntry-activate" title='The "activate" signal'><span class="type">"activate"</span></a> signal.)
|
864
|
+
</p>
|
865
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
866
|
+
<colgroup>
|
867
|
+
<col align="left" valign="top">
|
868
|
+
<col>
|
869
|
+
</colgroup>
|
870
|
+
<tbody>
|
871
|
+
<tr>
|
872
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
873
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
874
|
+
</td>
|
875
|
+
</tr>
|
876
|
+
<tr>
|
877
|
+
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
878
|
+
<td>
|
879
|
+
<code class="literal">TRUE</code> to activate window's default widget on Enter keypress</td>
|
880
|
+
</tr>
|
881
|
+
</tbody>
|
882
|
+
</table></div>
|
883
|
+
</div>
|
884
|
+
<hr>
|
885
|
+
<div class="refsect2">
|
886
|
+
<a name="gtk-entry-set-has-frame"></a><h3>gtk_entry_set_has_frame ()</h3>
|
887
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_has_frame (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
888
|
+
<em class="parameter"><code><span class="type">gboolean</span> setting</code></em>);</pre>
|
889
|
+
<p>
|
890
|
+
Sets whether the entry has a beveled frame around it.
|
891
|
+
</p>
|
892
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
893
|
+
<colgroup>
|
894
|
+
<col align="left" valign="top">
|
895
|
+
<col>
|
896
|
+
</colgroup>
|
897
|
+
<tbody>
|
898
|
+
<tr>
|
899
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
900
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
901
|
+
</td>
|
902
|
+
</tr>
|
903
|
+
<tr>
|
904
|
+
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
905
|
+
<td>new value</td>
|
906
|
+
</tr>
|
907
|
+
</tbody>
|
908
|
+
</table></div>
|
909
|
+
</div>
|
910
|
+
<hr>
|
911
|
+
<div class="refsect2">
|
912
|
+
<a name="gtk-entry-set-inner-border"></a><h3>gtk_entry_set_inner_border ()</h3>
|
913
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_inner_border (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
914
|
+
<em class="parameter"><code>const <a class="link" href="GtkStyleContext.html#GtkBorder"><span class="type">GtkBorder</span></a> *border</code></em>);</pre>
|
915
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
916
|
+
<h3 class="title">Warning</h3>
|
917
|
+
<p><code class="literal">gtk_entry_set_inner_border</code> has been deprecated since version 3.4 and should not be used in newly-written code. Use the standard border and padding CSS properties (through
|
918
|
+
objects like <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a> and <a class="link" href="GtkCssProvider.html" title="GtkCssProvider"><span class="type">GtkCssProvider</span></a>); the value set with
|
919
|
+
this function is ignored by <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.</p>
|
920
|
+
</div>
|
921
|
+
<p>
|
922
|
+
Sets <code class="literal">entry</code>'s inner-border property to <code class="literal">border</code>, or clears it if <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
|
923
|
+
is passed. The inner-border is the area around the entry's text, but
|
924
|
+
inside its frame.
|
925
|
+
</p>
|
926
|
+
<p>
|
927
|
+
If set, this property overrides the inner-border style property.
|
928
|
+
Overriding the style-provided border is useful when you want to do
|
929
|
+
in-place editing of some text in a canvas or list widget, where
|
930
|
+
pixel-exact positioning of the entry is important.
|
931
|
+
</p>
|
932
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
933
|
+
<colgroup>
|
934
|
+
<col align="left" valign="top">
|
935
|
+
<col>
|
936
|
+
</colgroup>
|
937
|
+
<tbody>
|
938
|
+
<tr>
|
939
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
940
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
941
|
+
</td>
|
942
|
+
</tr>
|
943
|
+
<tr>
|
944
|
+
<td><p><span class="term"><em class="parameter"><code>border</code></em> :</span></p></td>
|
945
|
+
<td>a <a class="link" href="GtkStyleContext.html#GtkBorder"><span class="type">GtkBorder</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
946
|
+
</td>
|
947
|
+
</tr>
|
948
|
+
</tbody>
|
949
|
+
</table></div>
|
950
|
+
<p class="since">Since 2.10</p>
|
951
|
+
</div>
|
952
|
+
<hr>
|
953
|
+
<div class="refsect2">
|
954
|
+
<a name="gtk-entry-set-width-chars"></a><h3>gtk_entry_set_width_chars ()</h3>
|
955
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_width_chars (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
956
|
+
<em class="parameter"><code><span class="type">gint</span> n_chars</code></em>);</pre>
|
957
|
+
<p>
|
958
|
+
Changes the size request of the entry to be about the right size
|
959
|
+
for <em class="parameter"><code>n_chars</code></em> characters. Note that it changes the size
|
960
|
+
<span class="emphasis"><em>request</em></span>, the size can still be affected by
|
961
|
+
how you pack the widget into containers. If <em class="parameter"><code>n_chars</code></em> is -1, the
|
962
|
+
size reverts to the default entry size.
|
963
|
+
</p>
|
964
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
965
|
+
<colgroup>
|
966
|
+
<col align="left" valign="top">
|
967
|
+
<col>
|
968
|
+
</colgroup>
|
969
|
+
<tbody>
|
970
|
+
<tr>
|
971
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
972
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
973
|
+
</td>
|
974
|
+
</tr>
|
975
|
+
<tr>
|
976
|
+
<td><p><span class="term"><em class="parameter"><code>n_chars</code></em> :</span></p></td>
|
977
|
+
<td>width in chars</td>
|
978
|
+
</tr>
|
979
|
+
</tbody>
|
980
|
+
</table></div>
|
981
|
+
</div>
|
982
|
+
<hr>
|
983
|
+
<div class="refsect2">
|
984
|
+
<a name="gtk-entry-get-invisible-char"></a><h3>gtk_entry_get_invisible_char ()</h3>
|
985
|
+
<pre class="programlisting"><span class="returnvalue">gunichar</span> gtk_entry_get_invisible_char (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
986
|
+
<p>
|
987
|
+
Retrieves the character displayed in place of the real characters
|
988
|
+
for entries with visibility set to false. See <a class="link" href="GtkEntry.html#gtk-entry-set-invisible-char" title="gtk_entry_set_invisible_char ()"><code class="function">gtk_entry_set_invisible_char()</code></a>.
|
989
|
+
</p>
|
990
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
991
|
+
<colgroup>
|
992
|
+
<col align="left" valign="top">
|
993
|
+
<col>
|
994
|
+
</colgroup>
|
995
|
+
<tbody>
|
996
|
+
<tr>
|
997
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
998
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
999
|
+
</td>
|
1000
|
+
</tr>
|
1001
|
+
<tr>
|
1002
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1003
|
+
<td>the current invisible char, or 0, if the entry does not
|
1004
|
+
show invisible text at all.</td>
|
1005
|
+
</tr>
|
1006
|
+
</tbody>
|
1007
|
+
</table></div>
|
1008
|
+
</div>
|
1009
|
+
<hr>
|
1010
|
+
<div class="refsect2">
|
1011
|
+
<a name="gtk-entry-set-alignment"></a><h3>gtk_entry_set_alignment ()</h3>
|
1012
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_alignment (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1013
|
+
<em class="parameter"><code><span class="type">gfloat</span> xalign</code></em>);</pre>
|
1014
|
+
<p>
|
1015
|
+
Sets the alignment for the contents of the entry. This controls
|
1016
|
+
the horizontal positioning of the contents when the displayed
|
1017
|
+
text is shorter than the width of the entry.
|
1018
|
+
</p>
|
1019
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1020
|
+
<colgroup>
|
1021
|
+
<col align="left" valign="top">
|
1022
|
+
<col>
|
1023
|
+
</colgroup>
|
1024
|
+
<tbody>
|
1025
|
+
<tr>
|
1026
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1027
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1028
|
+
</td>
|
1029
|
+
</tr>
|
1030
|
+
<tr>
|
1031
|
+
<td><p><span class="term"><em class="parameter"><code>xalign</code></em> :</span></p></td>
|
1032
|
+
<td>The horizontal alignment, from 0 (left) to 1 (right).
|
1033
|
+
Reversed for RTL layouts</td>
|
1034
|
+
</tr>
|
1035
|
+
</tbody>
|
1036
|
+
</table></div>
|
1037
|
+
<p class="since">Since 2.4</p>
|
1038
|
+
</div>
|
1039
|
+
<hr>
|
1040
|
+
<div class="refsect2">
|
1041
|
+
<a name="gtk-entry-get-alignment"></a><h3>gtk_entry_get_alignment ()</h3>
|
1042
|
+
<pre class="programlisting"><span class="returnvalue">gfloat</span> gtk_entry_get_alignment (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
1043
|
+
<p>
|
1044
|
+
Gets the value set by <a class="link" href="GtkEntry.html#gtk-entry-set-alignment" title="gtk_entry_set_alignment ()"><code class="function">gtk_entry_set_alignment()</code></a>.
|
1045
|
+
</p>
|
1046
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1047
|
+
<colgroup>
|
1048
|
+
<col align="left" valign="top">
|
1049
|
+
<col>
|
1050
|
+
</colgroup>
|
1051
|
+
<tbody>
|
1052
|
+
<tr>
|
1053
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1054
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1055
|
+
</td>
|
1056
|
+
</tr>
|
1057
|
+
<tr>
|
1058
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1059
|
+
<td>the alignment</td>
|
1060
|
+
</tr>
|
1061
|
+
</tbody>
|
1062
|
+
</table></div>
|
1063
|
+
<p class="since">Since 2.4</p>
|
1064
|
+
</div>
|
1065
|
+
<hr>
|
1066
|
+
<div class="refsect2">
|
1067
|
+
<a name="gtk-entry-set-placeholder-text"></a><h3>gtk_entry_set_placeholder_text ()</h3>
|
1068
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_placeholder_text (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1069
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>);</pre>
|
1070
|
+
<p>
|
1071
|
+
Sets text to be displayed in <em class="parameter"><code>entry</code></em> when it is empty and unfocused.
|
1072
|
+
This can be used to give a visual hint of the expected contents of
|
1073
|
+
the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.
|
1074
|
+
</p>
|
1075
|
+
<p>
|
1076
|
+
Note that since the placeholder text gets removed when the entry
|
1077
|
+
received focus, using this feature is a bit problematic if the entry
|
1078
|
+
is given the initial focus in a window. Sometimes this can be
|
1079
|
+
worked around by delaying the initial focus setting until the
|
1080
|
+
first key event arrives.
|
1081
|
+
</p>
|
1082
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1083
|
+
<colgroup>
|
1084
|
+
<col align="left" valign="top">
|
1085
|
+
<col>
|
1086
|
+
</colgroup>
|
1087
|
+
<tbody>
|
1088
|
+
<tr>
|
1089
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1090
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1091
|
+
</td>
|
1092
|
+
</tr>
|
1093
|
+
<tr>
|
1094
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
1095
|
+
<td>a string to be displayed when <em class="parameter"><code>entry</code></em> is empty an unfocused, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
|
1096
|
+
</td>
|
1097
|
+
</tr>
|
1098
|
+
</tbody>
|
1099
|
+
</table></div>
|
1100
|
+
<p class="since">Since 3.2</p>
|
1101
|
+
</div>
|
1102
|
+
<hr>
|
1103
|
+
<div class="refsect2">
|
1104
|
+
<a name="gtk-entry-get-placeholder-text"></a><h3>gtk_entry_get_placeholder_text ()</h3>
|
1105
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> * gtk_entry_get_placeholder_text (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
1106
|
+
<p>
|
1107
|
+
Retrieves the text that will be displayed when <em class="parameter"><code>entry</code></em> is empty and unfocused
|
1108
|
+
</p>
|
1109
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1110
|
+
<colgroup>
|
1111
|
+
<col align="left" valign="top">
|
1112
|
+
<col>
|
1113
|
+
</colgroup>
|
1114
|
+
<tbody>
|
1115
|
+
<tr>
|
1116
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1117
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1118
|
+
</td>
|
1119
|
+
</tr>
|
1120
|
+
<tr>
|
1121
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1122
|
+
<td>a pointer to the placeholder text as a string. This string points to internally allocated
|
1123
|
+
storage in the widget and must not be freed, modified or stored.</td>
|
1124
|
+
</tr>
|
1125
|
+
</tbody>
|
1126
|
+
</table></div>
|
1127
|
+
<p class="since">Since 3.2</p>
|
1128
|
+
</div>
|
1129
|
+
<hr>
|
1130
|
+
<div class="refsect2">
|
1131
|
+
<a name="gtk-entry-set-overwrite-mode"></a><h3>gtk_entry_set_overwrite_mode ()</h3>
|
1132
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_overwrite_mode (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1133
|
+
<em class="parameter"><code><span class="type">gboolean</span> overwrite</code></em>);</pre>
|
1134
|
+
<p>
|
1135
|
+
Sets whether the text is overwritten when typing in the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.
|
1136
|
+
</p>
|
1137
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1138
|
+
<colgroup>
|
1139
|
+
<col align="left" valign="top">
|
1140
|
+
<col>
|
1141
|
+
</colgroup>
|
1142
|
+
<tbody>
|
1143
|
+
<tr>
|
1144
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1145
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1146
|
+
</td>
|
1147
|
+
</tr>
|
1148
|
+
<tr>
|
1149
|
+
<td><p><span class="term"><em class="parameter"><code>overwrite</code></em> :</span></p></td>
|
1150
|
+
<td>new value</td>
|
1151
|
+
</tr>
|
1152
|
+
</tbody>
|
1153
|
+
</table></div>
|
1154
|
+
<p class="since">Since 2.14</p>
|
1155
|
+
</div>
|
1156
|
+
<hr>
|
1157
|
+
<div class="refsect2">
|
1158
|
+
<a name="gtk-entry-get-overwrite-mode"></a><h3>gtk_entry_get_overwrite_mode ()</h3>
|
1159
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_entry_get_overwrite_mode (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
1160
|
+
<p>
|
1161
|
+
Gets the value set by <a class="link" href="GtkEntry.html#gtk-entry-set-overwrite-mode" title="gtk_entry_set_overwrite_mode ()"><code class="function">gtk_entry_set_overwrite_mode()</code></a>.
|
1162
|
+
</p>
|
1163
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1164
|
+
<colgroup>
|
1165
|
+
<col align="left" valign="top">
|
1166
|
+
<col>
|
1167
|
+
</colgroup>
|
1168
|
+
<tbody>
|
1169
|
+
<tr>
|
1170
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1171
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1172
|
+
</td>
|
1173
|
+
</tr>
|
1174
|
+
<tr>
|
1175
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1176
|
+
<td>whether the text is overwritten when typing.</td>
|
1177
|
+
</tr>
|
1178
|
+
</tbody>
|
1179
|
+
</table></div>
|
1180
|
+
<p class="since">Since 2.14</p>
|
1181
|
+
</div>
|
1182
|
+
<hr>
|
1183
|
+
<div class="refsect2">
|
1184
|
+
<a name="gtk-entry-get-layout"></a><h3>gtk_entry_get_layout ()</h3>
|
1185
|
+
<pre class="programlisting"><span class="returnvalue">PangoLayout</span> * gtk_entry_get_layout (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
1186
|
+
<p>
|
1187
|
+
Gets the <span class="type">PangoLayout</span> used to display the entry.
|
1188
|
+
The layout is useful to e.g. convert text positions to
|
1189
|
+
pixel positions, in combination with <a class="link" href="GtkEntry.html#gtk-entry-get-layout-offsets" title="gtk_entry_get_layout_offsets ()"><code class="function">gtk_entry_get_layout_offsets()</code></a>.
|
1190
|
+
The returned layout is owned by the entry and must not be
|
1191
|
+
modified or freed by the caller.
|
1192
|
+
</p>
|
1193
|
+
<p>
|
1194
|
+
Keep in mind that the layout text may contain a preedit string, so
|
1195
|
+
<a class="link" href="GtkEntry.html#gtk-entry-layout-index-to-text-index" title="gtk_entry_layout_index_to_text_index ()"><code class="function">gtk_entry_layout_index_to_text_index()</code></a> and
|
1196
|
+
<a class="link" href="GtkEntry.html#gtk-entry-text-index-to-layout-index" title="gtk_entry_text_index_to_layout_index ()"><code class="function">gtk_entry_text_index_to_layout_index()</code></a> are needed to convert byte
|
1197
|
+
indices in the layout to byte indices in the entry contents.
|
1198
|
+
</p>
|
1199
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1200
|
+
<colgroup>
|
1201
|
+
<col align="left" valign="top">
|
1202
|
+
<col>
|
1203
|
+
</colgroup>
|
1204
|
+
<tbody>
|
1205
|
+
<tr>
|
1206
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1207
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1208
|
+
</td>
|
1209
|
+
</tr>
|
1210
|
+
<tr>
|
1211
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1212
|
+
<td>the <span class="type">PangoLayout</span> for this entry. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1213
|
+
</td>
|
1214
|
+
</tr>
|
1215
|
+
</tbody>
|
1216
|
+
</table></div>
|
1217
|
+
</div>
|
1218
|
+
<hr>
|
1219
|
+
<div class="refsect2">
|
1220
|
+
<a name="gtk-entry-get-layout-offsets"></a><h3>gtk_entry_get_layout_offsets ()</h3>
|
1221
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_get_layout_offsets (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1222
|
+
<em class="parameter"><code><span class="type">gint</span> *x</code></em>,
|
1223
|
+
<em class="parameter"><code><span class="type">gint</span> *y</code></em>);</pre>
|
1224
|
+
<p>
|
1225
|
+
Obtains the position of the <span class="type">PangoLayout</span> used to render text
|
1226
|
+
in the entry, in widget coordinates. Useful if you want to line
|
1227
|
+
up the text in an entry with some other text, e.g. when using the
|
1228
|
+
entry to implement editable cells in a sheet widget.
|
1229
|
+
</p>
|
1230
|
+
<p>
|
1231
|
+
Also useful to convert mouse events into coordinates inside the
|
1232
|
+
<span class="type">PangoLayout</span>, e.g. to take some action if some part of the entry text
|
1233
|
+
is clicked.
|
1234
|
+
</p>
|
1235
|
+
<p>
|
1236
|
+
Note that as the user scrolls around in the entry the offsets will
|
1237
|
+
change; you'll need to connect to the "notify::scroll-offset"
|
1238
|
+
signal to track this. Remember when using the <span class="type">PangoLayout</span>
|
1239
|
+
functions you need to convert to and from pixels using
|
1240
|
+
<code class="function">PANGO_PIXELS()</code> or <span class="type">PANGO_SCALE</span>.
|
1241
|
+
</p>
|
1242
|
+
<p>
|
1243
|
+
Keep in mind that the layout text may contain a preedit string, so
|
1244
|
+
<a class="link" href="GtkEntry.html#gtk-entry-layout-index-to-text-index" title="gtk_entry_layout_index_to_text_index ()"><code class="function">gtk_entry_layout_index_to_text_index()</code></a> and
|
1245
|
+
<a class="link" href="GtkEntry.html#gtk-entry-text-index-to-layout-index" title="gtk_entry_text_index_to_layout_index ()"><code class="function">gtk_entry_text_index_to_layout_index()</code></a> are needed to convert byte
|
1246
|
+
indices in the layout to byte indices in the entry contents.
|
1247
|
+
</p>
|
1248
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1249
|
+
<colgroup>
|
1250
|
+
<col align="left" valign="top">
|
1251
|
+
<col>
|
1252
|
+
</colgroup>
|
1253
|
+
<tbody>
|
1254
|
+
<tr>
|
1255
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1256
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1257
|
+
</td>
|
1258
|
+
</tr>
|
1259
|
+
<tr>
|
1260
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
1261
|
+
<td>location to store X offset of layout, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1262
|
+
</td>
|
1263
|
+
</tr>
|
1264
|
+
<tr>
|
1265
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
1266
|
+
<td>location to store Y offset of layout, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1267
|
+
</td>
|
1268
|
+
</tr>
|
1269
|
+
</tbody>
|
1270
|
+
</table></div>
|
1271
|
+
</div>
|
1272
|
+
<hr>
|
1273
|
+
<div class="refsect2">
|
1274
|
+
<a name="gtk-entry-layout-index-to-text-index"></a><h3>gtk_entry_layout_index_to_text_index ()</h3>
|
1275
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_entry_layout_index_to_text_index
|
1276
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1277
|
+
<em class="parameter"><code><span class="type">gint</span> layout_index</code></em>);</pre>
|
1278
|
+
<p>
|
1279
|
+
Converts from a position in the entry contents (returned
|
1280
|
+
by <a class="link" href="GtkEntry.html#gtk-entry-get-text" title="gtk_entry_get_text ()"><code class="function">gtk_entry_get_text()</code></a>) to a position in the
|
1281
|
+
entry's <span class="type">PangoLayout</span> (returned by <a class="link" href="GtkEntry.html#gtk-entry-get-layout" title="gtk_entry_get_layout ()"><code class="function">gtk_entry_get_layout()</code></a>,
|
1282
|
+
with text retrieved via <code class="function">pango_layout_get_text()</code>).
|
1283
|
+
</p>
|
1284
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1285
|
+
<colgroup>
|
1286
|
+
<col align="left" valign="top">
|
1287
|
+
<col>
|
1288
|
+
</colgroup>
|
1289
|
+
<tbody>
|
1290
|
+
<tr>
|
1291
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1292
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1293
|
+
</td>
|
1294
|
+
</tr>
|
1295
|
+
<tr>
|
1296
|
+
<td><p><span class="term"><em class="parameter"><code>layout_index</code></em> :</span></p></td>
|
1297
|
+
<td>byte index into the entry layout text</td>
|
1298
|
+
</tr>
|
1299
|
+
<tr>
|
1300
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1301
|
+
<td>byte index into the entry contents</td>
|
1302
|
+
</tr>
|
1303
|
+
</tbody>
|
1304
|
+
</table></div>
|
1305
|
+
</div>
|
1306
|
+
<hr>
|
1307
|
+
<div class="refsect2">
|
1308
|
+
<a name="gtk-entry-text-index-to-layout-index"></a><h3>gtk_entry_text_index_to_layout_index ()</h3>
|
1309
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_entry_text_index_to_layout_index
|
1310
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1311
|
+
<em class="parameter"><code><span class="type">gint</span> text_index</code></em>);</pre>
|
1312
|
+
<p>
|
1313
|
+
Converts from a position in the entry's <span class="type">PangoLayout</span> (returned by
|
1314
|
+
<a class="link" href="GtkEntry.html#gtk-entry-get-layout" title="gtk_entry_get_layout ()"><code class="function">gtk_entry_get_layout()</code></a>) to a position in the entry contents
|
1315
|
+
(returned by <a class="link" href="GtkEntry.html#gtk-entry-get-text" title="gtk_entry_get_text ()"><code class="function">gtk_entry_get_text()</code></a>).
|
1316
|
+
</p>
|
1317
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1318
|
+
<colgroup>
|
1319
|
+
<col align="left" valign="top">
|
1320
|
+
<col>
|
1321
|
+
</colgroup>
|
1322
|
+
<tbody>
|
1323
|
+
<tr>
|
1324
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1325
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1326
|
+
</td>
|
1327
|
+
</tr>
|
1328
|
+
<tr>
|
1329
|
+
<td><p><span class="term"><em class="parameter"><code>text_index</code></em> :</span></p></td>
|
1330
|
+
<td>byte index into the entry contents</td>
|
1331
|
+
</tr>
|
1332
|
+
<tr>
|
1333
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1334
|
+
<td>byte index into the entry layout text</td>
|
1335
|
+
</tr>
|
1336
|
+
</tbody>
|
1337
|
+
</table></div>
|
1338
|
+
</div>
|
1339
|
+
<hr>
|
1340
|
+
<div class="refsect2">
|
1341
|
+
<a name="gtk-entry-set-attributes"></a><h3>gtk_entry_set_attributes ()</h3>
|
1342
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_attributes (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1343
|
+
<em class="parameter"><code><span class="type">PangoAttrList</span> *attrs</code></em>);</pre>
|
1344
|
+
<p>
|
1345
|
+
Sets a <span class="type">PangoAttrList</span>; the attributes in the list are applied to the
|
1346
|
+
entry text.
|
1347
|
+
</p>
|
1348
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1349
|
+
<colgroup>
|
1350
|
+
<col align="left" valign="top">
|
1351
|
+
<col>
|
1352
|
+
</colgroup>
|
1353
|
+
<tbody>
|
1354
|
+
<tr>
|
1355
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1356
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1357
|
+
</td>
|
1358
|
+
</tr>
|
1359
|
+
<tr>
|
1360
|
+
<td><p><span class="term"><em class="parameter"><code>attrs</code></em> :</span></p></td>
|
1361
|
+
<td>a <span class="type">PangoAttrList</span>
|
1362
|
+
</td>
|
1363
|
+
</tr>
|
1364
|
+
</tbody>
|
1365
|
+
</table></div>
|
1366
|
+
<p class="since">Since 3.6</p>
|
1367
|
+
</div>
|
1368
|
+
<hr>
|
1369
|
+
<div class="refsect2">
|
1370
|
+
<a name="gtk-entry-get-attributes"></a><h3>gtk_entry_get_attributes ()</h3>
|
1371
|
+
<pre class="programlisting"><span class="returnvalue">PangoAttrList</span> * gtk_entry_get_attributes (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
1372
|
+
<p>
|
1373
|
+
Gets the attribute list that was set on the entry using
|
1374
|
+
<a class="link" href="GtkEntry.html#gtk-entry-set-attributes" title="gtk_entry_set_attributes ()"><code class="function">gtk_entry_set_attributes()</code></a>, if any.
|
1375
|
+
</p>
|
1376
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1377
|
+
<colgroup>
|
1378
|
+
<col align="left" valign="top">
|
1379
|
+
<col>
|
1380
|
+
</colgroup>
|
1381
|
+
<tbody>
|
1382
|
+
<tr>
|
1383
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1384
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1385
|
+
</td>
|
1386
|
+
</tr>
|
1387
|
+
<tr>
|
1388
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1389
|
+
<td>the attribute list, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
|
1390
|
+
if none was set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1391
|
+
</td>
|
1392
|
+
</tr>
|
1393
|
+
</tbody>
|
1394
|
+
</table></div>
|
1395
|
+
<p class="since">Since 3.6</p>
|
1396
|
+
</div>
|
1397
|
+
<hr>
|
1398
|
+
<div class="refsect2">
|
1399
|
+
<a name="gtk-entry-get-max-length"></a><h3>gtk_entry_get_max_length ()</h3>
|
1400
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_entry_get_max_length (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
1401
|
+
<p>
|
1402
|
+
Retrieves the maximum allowed length of the text in
|
1403
|
+
<em class="parameter"><code>entry</code></em>. See <a class="link" href="GtkEntry.html#gtk-entry-set-max-length" title="gtk_entry_set_max_length ()"><code class="function">gtk_entry_set_max_length()</code></a>.
|
1404
|
+
</p>
|
1405
|
+
<p>
|
1406
|
+
This is equivalent to:
|
1407
|
+
</p>
|
1408
|
+
<p>
|
1409
|
+
</p>
|
1410
|
+
<div class="informalexample">
|
1411
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
1412
|
+
<tbody>
|
1413
|
+
<tr>
|
1414
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
1415
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="GtkEntryBuffer.html#gtk-entry-buffer-get-max-length">gtk_entry_buffer_get_max_length</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function"><a href="GtkEntry.html#gtk-entry-get-buffer">gtk_entry_get_buffer</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">entry</span><span class="symbol">));</span></pre></td>
|
1416
|
+
</tr>
|
1417
|
+
</tbody>
|
1418
|
+
</table>
|
1419
|
+
</div>
|
1420
|
+
|
1421
|
+
<p>
|
1422
|
+
</p>
|
1423
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1424
|
+
<colgroup>
|
1425
|
+
<col align="left" valign="top">
|
1426
|
+
<col>
|
1427
|
+
</colgroup>
|
1428
|
+
<tbody>
|
1429
|
+
<tr>
|
1430
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1431
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1432
|
+
</td>
|
1433
|
+
</tr>
|
1434
|
+
<tr>
|
1435
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1436
|
+
<td>the maximum allowed number of characters
|
1437
|
+
in <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>, or 0 if there is no maximum.</td>
|
1438
|
+
</tr>
|
1439
|
+
</tbody>
|
1440
|
+
</table></div>
|
1441
|
+
</div>
|
1442
|
+
<hr>
|
1443
|
+
<div class="refsect2">
|
1444
|
+
<a name="gtk-entry-get-visibility"></a><h3>gtk_entry_get_visibility ()</h3>
|
1445
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_entry_get_visibility (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
1446
|
+
<p>
|
1447
|
+
Retrieves whether the text in <em class="parameter"><code>entry</code></em> is visible. See
|
1448
|
+
<a class="link" href="GtkEntry.html#gtk-entry-set-visibility" title="gtk_entry_set_visibility ()"><code class="function">gtk_entry_set_visibility()</code></a>.
|
1449
|
+
</p>
|
1450
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1451
|
+
<colgroup>
|
1452
|
+
<col align="left" valign="top">
|
1453
|
+
<col>
|
1454
|
+
</colgroup>
|
1455
|
+
<tbody>
|
1456
|
+
<tr>
|
1457
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1458
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1459
|
+
</td>
|
1460
|
+
</tr>
|
1461
|
+
<tr>
|
1462
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1463
|
+
<td>
|
1464
|
+
<code class="literal">TRUE</code> if the text is currently visible</td>
|
1465
|
+
</tr>
|
1466
|
+
</tbody>
|
1467
|
+
</table></div>
|
1468
|
+
</div>
|
1469
|
+
<hr>
|
1470
|
+
<div class="refsect2">
|
1471
|
+
<a name="gtk-entry-set-completion"></a><h3>gtk_entry_set_completion ()</h3>
|
1472
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_completion (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1473
|
+
<em class="parameter"><code><a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="type">GtkEntryCompletion</span></a> *completion</code></em>);</pre>
|
1474
|
+
<p>
|
1475
|
+
Sets <em class="parameter"><code>completion</code></em> to be the auxiliary completion object to use with <em class="parameter"><code>entry</code></em>.
|
1476
|
+
All further configuration of the completion mechanism is done on
|
1477
|
+
<em class="parameter"><code>completion</code></em> using the <a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="type">GtkEntryCompletion</span></a> API. Completion is disabled if
|
1478
|
+
<em class="parameter"><code>completion</code></em> is set to <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>.
|
1479
|
+
</p>
|
1480
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1481
|
+
<colgroup>
|
1482
|
+
<col align="left" valign="top">
|
1483
|
+
<col>
|
1484
|
+
</colgroup>
|
1485
|
+
<tbody>
|
1486
|
+
<tr>
|
1487
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1488
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1489
|
+
</td>
|
1490
|
+
</tr>
|
1491
|
+
<tr>
|
1492
|
+
<td><p><span class="term"><em class="parameter"><code>completion</code></em> :</span></p></td>
|
1493
|
+
<td>The <a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="type">GtkEntryCompletion</span></a> or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1494
|
+
</td>
|
1495
|
+
</tr>
|
1496
|
+
</tbody>
|
1497
|
+
</table></div>
|
1498
|
+
<p class="since">Since 2.4</p>
|
1499
|
+
</div>
|
1500
|
+
<hr>
|
1501
|
+
<div class="refsect2">
|
1502
|
+
<a name="gtk-entry-get-completion"></a><h3>gtk_entry_get_completion ()</h3>
|
1503
|
+
<pre class="programlisting"><a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="returnvalue">GtkEntryCompletion</span></a> * gtk_entry_get_completion (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
1504
|
+
<p>
|
1505
|
+
Returns the auxiliary completion object currently in use by <em class="parameter"><code>entry</code></em>.
|
1506
|
+
</p>
|
1507
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1508
|
+
<colgroup>
|
1509
|
+
<col align="left" valign="top">
|
1510
|
+
<col>
|
1511
|
+
</colgroup>
|
1512
|
+
<tbody>
|
1513
|
+
<tr>
|
1514
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1515
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1516
|
+
</td>
|
1517
|
+
</tr>
|
1518
|
+
<tr>
|
1519
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1520
|
+
<td>The auxiliary completion object currently
|
1521
|
+
in use by <em class="parameter"><code>entry</code></em>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1522
|
+
</td>
|
1523
|
+
</tr>
|
1524
|
+
</tbody>
|
1525
|
+
</table></div>
|
1526
|
+
<p class="since">Since 2.4</p>
|
1527
|
+
</div>
|
1528
|
+
<hr>
|
1529
|
+
<div class="refsect2">
|
1530
|
+
<a name="gtk-entry-set-cursor-hadjustment"></a><h3>gtk_entry_set_cursor_hadjustment ()</h3>
|
1531
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_cursor_hadjustment (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1532
|
+
<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
1533
|
+
<p>
|
1534
|
+
Hooks up an adjustment to the cursor position in an entry, so that when
|
1535
|
+
the cursor is moved, the adjustment is scrolled to show that position.
|
1536
|
+
See <a class="link" href="GtkScrolledWindow.html#gtk-scrolled-window-get-hadjustment" title="gtk_scrolled_window_get_hadjustment ()"><code class="function">gtk_scrolled_window_get_hadjustment()</code></a> for a typical way of obtaining
|
1537
|
+
the adjustment.
|
1538
|
+
</p>
|
1539
|
+
<p>
|
1540
|
+
The adjustment has to be in pixel units and in the same coordinate system
|
1541
|
+
as the entry.
|
1542
|
+
</p>
|
1543
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1544
|
+
<colgroup>
|
1545
|
+
<col align="left" valign="top">
|
1546
|
+
<col>
|
1547
|
+
</colgroup>
|
1548
|
+
<tbody>
|
1549
|
+
<tr>
|
1550
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1551
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1552
|
+
</td>
|
1553
|
+
</tr>
|
1554
|
+
<tr>
|
1555
|
+
<td><p><span class="term"><em class="parameter"><code>adjustment</code></em> :</span></p></td>
|
1556
|
+
<td>an adjustment which should be adjusted when the cursor
|
1557
|
+
is moved, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
|
1558
|
+
</td>
|
1559
|
+
</tr>
|
1560
|
+
</tbody>
|
1561
|
+
</table></div>
|
1562
|
+
<p class="since">Since 2.12</p>
|
1563
|
+
</div>
|
1564
|
+
<hr>
|
1565
|
+
<div class="refsect2">
|
1566
|
+
<a name="gtk-entry-get-cursor-hadjustment"></a><h3>gtk_entry_get_cursor_hadjustment ()</h3>
|
1567
|
+
<pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * gtk_entry_get_cursor_hadjustment (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
1568
|
+
<p>
|
1569
|
+
Retrieves the horizontal cursor adjustment for the entry.
|
1570
|
+
See <a class="link" href="GtkEntry.html#gtk-entry-set-cursor-hadjustment" title="gtk_entry_set_cursor_hadjustment ()"><code class="function">gtk_entry_set_cursor_hadjustment()</code></a>.
|
1571
|
+
</p>
|
1572
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1573
|
+
<colgroup>
|
1574
|
+
<col align="left" valign="top">
|
1575
|
+
<col>
|
1576
|
+
</colgroup>
|
1577
|
+
<tbody>
|
1578
|
+
<tr>
|
1579
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1580
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1581
|
+
</td>
|
1582
|
+
</tr>
|
1583
|
+
<tr>
|
1584
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1585
|
+
<td>the horizontal cursor adjustment, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>
|
1586
|
+
if none has been set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1587
|
+
</td>
|
1588
|
+
</tr>
|
1589
|
+
</tbody>
|
1590
|
+
</table></div>
|
1591
|
+
<p class="since">Since 2.12</p>
|
1592
|
+
</div>
|
1593
|
+
<hr>
|
1594
|
+
<div class="refsect2">
|
1595
|
+
<a name="gtk-entry-set-progress-fraction"></a><h3>gtk_entry_set_progress_fraction ()</h3>
|
1596
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_progress_fraction (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1597
|
+
<em class="parameter"><code><span class="type">gdouble</span> fraction</code></em>);</pre>
|
1598
|
+
<p>
|
1599
|
+
Causes the entry's progress indicator to "fill in" the given
|
1600
|
+
fraction of the bar. The fraction should be between 0.0 and 1.0,
|
1601
|
+
inclusive.
|
1602
|
+
</p>
|
1603
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1604
|
+
<colgroup>
|
1605
|
+
<col align="left" valign="top">
|
1606
|
+
<col>
|
1607
|
+
</colgroup>
|
1608
|
+
<tbody>
|
1609
|
+
<tr>
|
1610
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1611
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1612
|
+
</td>
|
1613
|
+
</tr>
|
1614
|
+
<tr>
|
1615
|
+
<td><p><span class="term"><em class="parameter"><code>fraction</code></em> :</span></p></td>
|
1616
|
+
<td>fraction of the task that's been completed</td>
|
1617
|
+
</tr>
|
1618
|
+
</tbody>
|
1619
|
+
</table></div>
|
1620
|
+
<p class="since">Since 2.16</p>
|
1621
|
+
</div>
|
1622
|
+
<hr>
|
1623
|
+
<div class="refsect2">
|
1624
|
+
<a name="gtk-entry-get-progress-fraction"></a><h3>gtk_entry_get_progress_fraction ()</h3>
|
1625
|
+
<pre class="programlisting"><span class="returnvalue">gdouble</span> gtk_entry_get_progress_fraction (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
1626
|
+
<p>
|
1627
|
+
Returns the current fraction of the task that's been completed.
|
1628
|
+
See <a class="link" href="GtkEntry.html#gtk-entry-set-progress-fraction" title="gtk_entry_set_progress_fraction ()"><code class="function">gtk_entry_set_progress_fraction()</code></a>.
|
1629
|
+
</p>
|
1630
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1631
|
+
<colgroup>
|
1632
|
+
<col align="left" valign="top">
|
1633
|
+
<col>
|
1634
|
+
</colgroup>
|
1635
|
+
<tbody>
|
1636
|
+
<tr>
|
1637
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1638
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1639
|
+
</td>
|
1640
|
+
</tr>
|
1641
|
+
<tr>
|
1642
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1643
|
+
<td>a fraction from 0.0 to 1.0</td>
|
1644
|
+
</tr>
|
1645
|
+
</tbody>
|
1646
|
+
</table></div>
|
1647
|
+
<p class="since">Since 2.16</p>
|
1648
|
+
</div>
|
1649
|
+
<hr>
|
1650
|
+
<div class="refsect2">
|
1651
|
+
<a name="gtk-entry-set-progress-pulse-step"></a><h3>gtk_entry_set_progress_pulse_step ()</h3>
|
1652
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_progress_pulse_step (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1653
|
+
<em class="parameter"><code><span class="type">gdouble</span> fraction</code></em>);</pre>
|
1654
|
+
<p>
|
1655
|
+
Sets the fraction of total entry width to move the progress
|
1656
|
+
bouncing block for each call to <a class="link" href="GtkEntry.html#gtk-entry-progress-pulse" title="gtk_entry_progress_pulse ()"><code class="function">gtk_entry_progress_pulse()</code></a>.
|
1657
|
+
</p>
|
1658
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1659
|
+
<colgroup>
|
1660
|
+
<col align="left" valign="top">
|
1661
|
+
<col>
|
1662
|
+
</colgroup>
|
1663
|
+
<tbody>
|
1664
|
+
<tr>
|
1665
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1666
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1667
|
+
</td>
|
1668
|
+
</tr>
|
1669
|
+
<tr>
|
1670
|
+
<td><p><span class="term"><em class="parameter"><code>fraction</code></em> :</span></p></td>
|
1671
|
+
<td>fraction between 0.0 and 1.0</td>
|
1672
|
+
</tr>
|
1673
|
+
</tbody>
|
1674
|
+
</table></div>
|
1675
|
+
<p class="since">Since 2.16</p>
|
1676
|
+
</div>
|
1677
|
+
<hr>
|
1678
|
+
<div class="refsect2">
|
1679
|
+
<a name="gtk-entry-get-progress-pulse-step"></a><h3>gtk_entry_get_progress_pulse_step ()</h3>
|
1680
|
+
<pre class="programlisting"><span class="returnvalue">gdouble</span> gtk_entry_get_progress_pulse_step (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
1681
|
+
<p>
|
1682
|
+
Retrieves the pulse step set with <a class="link" href="GtkEntry.html#gtk-entry-set-progress-pulse-step" title="gtk_entry_set_progress_pulse_step ()"><code class="function">gtk_entry_set_progress_pulse_step()</code></a>.
|
1683
|
+
</p>
|
1684
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1685
|
+
<colgroup>
|
1686
|
+
<col align="left" valign="top">
|
1687
|
+
<col>
|
1688
|
+
</colgroup>
|
1689
|
+
<tbody>
|
1690
|
+
<tr>
|
1691
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1692
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1693
|
+
</td>
|
1694
|
+
</tr>
|
1695
|
+
<tr>
|
1696
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1697
|
+
<td>a fraction from 0.0 to 1.0</td>
|
1698
|
+
</tr>
|
1699
|
+
</tbody>
|
1700
|
+
</table></div>
|
1701
|
+
<p class="since">Since 2.16</p>
|
1702
|
+
</div>
|
1703
|
+
<hr>
|
1704
|
+
<div class="refsect2">
|
1705
|
+
<a name="gtk-entry-progress-pulse"></a><h3>gtk_entry_progress_pulse ()</h3>
|
1706
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_progress_pulse (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
1707
|
+
<p>
|
1708
|
+
Indicates that some progress is made, but you don't know how much.
|
1709
|
+
Causes the entry's progress indicator to enter "activity mode,"
|
1710
|
+
where a block bounces back and forth. Each call to
|
1711
|
+
<a class="link" href="GtkEntry.html#gtk-entry-progress-pulse" title="gtk_entry_progress_pulse ()"><code class="function">gtk_entry_progress_pulse()</code></a> causes the block to move by a little bit
|
1712
|
+
(the amount of movement per pulse is determined by
|
1713
|
+
<a class="link" href="GtkEntry.html#gtk-entry-set-progress-pulse-step" title="gtk_entry_set_progress_pulse_step ()"><code class="function">gtk_entry_set_progress_pulse_step()</code></a>).
|
1714
|
+
</p>
|
1715
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1716
|
+
<colgroup>
|
1717
|
+
<col align="left" valign="top">
|
1718
|
+
<col>
|
1719
|
+
</colgroup>
|
1720
|
+
<tbody><tr>
|
1721
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1722
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1723
|
+
</td>
|
1724
|
+
</tr></tbody>
|
1725
|
+
</table></div>
|
1726
|
+
<p class="since">Since 2.16</p>
|
1727
|
+
</div>
|
1728
|
+
<hr>
|
1729
|
+
<div class="refsect2">
|
1730
|
+
<a name="gtk-entry-im-context-filter-keypress"></a><h3>gtk_entry_im_context_filter_keypress ()</h3>
|
1731
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_entry_im_context_filter_keypress
|
1732
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1733
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>);</pre>
|
1734
|
+
<p>
|
1735
|
+
Allow the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> input method to internally handle key press
|
1736
|
+
and release events. If this function returns <code class="literal">TRUE</code>, then no further
|
1737
|
+
processing should be done for this key event. See
|
1738
|
+
<a class="link" href="GtkIMContext.html#gtk-im-context-filter-keypress" title="gtk_im_context_filter_keypress ()"><code class="function">gtk_im_context_filter_keypress()</code></a>.
|
1739
|
+
</p>
|
1740
|
+
<p>
|
1741
|
+
Note that you are expected to call this function from your handler
|
1742
|
+
when overriding key event handling. This is needed in the case when
|
1743
|
+
you need to insert your own key handling between the input method
|
1744
|
+
and the default key event handling of the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.
|
1745
|
+
See <a class="link" href="GtkTextView.html#gtk-text-view-reset-im-context" title="gtk_text_view_reset_im_context ()"><code class="function">gtk_text_view_reset_im_context()</code></a> for an example of use.
|
1746
|
+
</p>
|
1747
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1748
|
+
<colgroup>
|
1749
|
+
<col align="left" valign="top">
|
1750
|
+
<col>
|
1751
|
+
</colgroup>
|
1752
|
+
<tbody>
|
1753
|
+
<tr>
|
1754
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1755
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1756
|
+
</td>
|
1757
|
+
</tr>
|
1758
|
+
<tr>
|
1759
|
+
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
1760
|
+
<td>the key event. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> Gdk.EventKey]</span>
|
1761
|
+
</td>
|
1762
|
+
</tr>
|
1763
|
+
<tr>
|
1764
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1765
|
+
<td>
|
1766
|
+
<code class="literal">TRUE</code> if the input method handled the key event.</td>
|
1767
|
+
</tr>
|
1768
|
+
</tbody>
|
1769
|
+
</table></div>
|
1770
|
+
<p class="since">Since 2.22</p>
|
1771
|
+
</div>
|
1772
|
+
<hr>
|
1773
|
+
<div class="refsect2">
|
1774
|
+
<a name="gtk-entry-reset-im-context"></a><h3>gtk_entry_reset_im_context ()</h3>
|
1775
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_reset_im_context (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
1776
|
+
<p>
|
1777
|
+
Reset the input method context of the entry if needed.
|
1778
|
+
</p>
|
1779
|
+
<p>
|
1780
|
+
This can be necessary in the case where modifying the buffer
|
1781
|
+
would confuse on-going input method behavior.
|
1782
|
+
</p>
|
1783
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1784
|
+
<colgroup>
|
1785
|
+
<col align="left" valign="top">
|
1786
|
+
<col>
|
1787
|
+
</colgroup>
|
1788
|
+
<tbody><tr>
|
1789
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1790
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1791
|
+
</td>
|
1792
|
+
</tr></tbody>
|
1793
|
+
</table></div>
|
1794
|
+
<p class="since">Since 2.22</p>
|
1795
|
+
</div>
|
1796
|
+
<hr>
|
1797
|
+
<div class="refsect2">
|
1798
|
+
<a name="GtkEntryIconPosition"></a><h3>enum GtkEntryIconPosition</h3>
|
1799
|
+
<pre class="programlisting">typedef enum {
|
1800
|
+
GTK_ENTRY_ICON_PRIMARY,
|
1801
|
+
GTK_ENTRY_ICON_SECONDARY
|
1802
|
+
} GtkEntryIconPosition;
|
1803
|
+
</pre>
|
1804
|
+
<p>
|
1805
|
+
Specifies the side of the entry at which an icon is placed.
|
1806
|
+
</p>
|
1807
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1808
|
+
<colgroup>
|
1809
|
+
<col align="left" valign="top">
|
1810
|
+
<col>
|
1811
|
+
</colgroup>
|
1812
|
+
<tbody>
|
1813
|
+
<tr>
|
1814
|
+
<td><p><a name="GTK-ENTRY-ICON-PRIMARY:CAPS"></a><span class="term"><code class="literal">GTK_ENTRY_ICON_PRIMARY</code></span></p></td>
|
1815
|
+
<td>At the beginning of the entry (depending on the text direction).
|
1816
|
+
</td>
|
1817
|
+
</tr>
|
1818
|
+
<tr>
|
1819
|
+
<td><p><a name="GTK-ENTRY-ICON-SECONDARY:CAPS"></a><span class="term"><code class="literal">GTK_ENTRY_ICON_SECONDARY</code></span></p></td>
|
1820
|
+
<td>At the end of the entry (depending on the text direction).
|
1821
|
+
</td>
|
1822
|
+
</tr>
|
1823
|
+
</tbody>
|
1824
|
+
</table></div>
|
1825
|
+
<p class="since">Since 2.16</p>
|
1826
|
+
</div>
|
1827
|
+
<hr>
|
1828
|
+
<div class="refsect2">
|
1829
|
+
<a name="gtk-entry-set-icon-from-pixbuf"></a><h3>gtk_entry_set_icon_from_pixbuf ()</h3>
|
1830
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_icon_from_pixbuf (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1831
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
1832
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
|
1833
|
+
<p>
|
1834
|
+
Sets the icon shown in the specified position using a pixbuf.
|
1835
|
+
</p>
|
1836
|
+
<p>
|
1837
|
+
If <em class="parameter"><code>pixbuf</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, no icon will be shown in the specified position.
|
1838
|
+
</p>
|
1839
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1840
|
+
<colgroup>
|
1841
|
+
<col align="left" valign="top">
|
1842
|
+
<col>
|
1843
|
+
</colgroup>
|
1844
|
+
<tbody>
|
1845
|
+
<tr>
|
1846
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1847
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1848
|
+
</td>
|
1849
|
+
</tr>
|
1850
|
+
<tr>
|
1851
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1852
|
+
<td>Icon position</td>
|
1853
|
+
</tr>
|
1854
|
+
<tr>
|
1855
|
+
<td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
|
1856
|
+
<td>A <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1857
|
+
</td>
|
1858
|
+
</tr>
|
1859
|
+
</tbody>
|
1860
|
+
</table></div>
|
1861
|
+
<p class="since">Since 2.16</p>
|
1862
|
+
</div>
|
1863
|
+
<hr>
|
1864
|
+
<div class="refsect2">
|
1865
|
+
<a name="gtk-entry-set-icon-from-stock"></a><h3>gtk_entry_set_icon_from_stock ()</h3>
|
1866
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_icon_from_stock (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1867
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
1868
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *stock_id</code></em>);</pre>
|
1869
|
+
<p>
|
1870
|
+
Sets the icon shown in the entry at the specified position from
|
1871
|
+
a stock image.
|
1872
|
+
</p>
|
1873
|
+
<p>
|
1874
|
+
If <em class="parameter"><code>stock_id</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, no icon will be shown in the specified position.
|
1875
|
+
</p>
|
1876
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1877
|
+
<colgroup>
|
1878
|
+
<col align="left" valign="top">
|
1879
|
+
<col>
|
1880
|
+
</colgroup>
|
1881
|
+
<tbody>
|
1882
|
+
<tr>
|
1883
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1884
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1885
|
+
</td>
|
1886
|
+
</tr>
|
1887
|
+
<tr>
|
1888
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1889
|
+
<td>Icon position</td>
|
1890
|
+
</tr>
|
1891
|
+
<tr>
|
1892
|
+
<td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
|
1893
|
+
<td>The name of the stock item, 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>
|
1894
|
+
</td>
|
1895
|
+
</tr>
|
1896
|
+
</tbody>
|
1897
|
+
</table></div>
|
1898
|
+
<p class="since">Since 2.16</p>
|
1899
|
+
</div>
|
1900
|
+
<hr>
|
1901
|
+
<div class="refsect2">
|
1902
|
+
<a name="gtk-entry-set-icon-from-icon-name"></a><h3>gtk_entry_set_icon_from_icon_name ()</h3>
|
1903
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_icon_from_icon_name (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1904
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
1905
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *icon_name</code></em>);</pre>
|
1906
|
+
<p>
|
1907
|
+
Sets the icon shown in the entry at the specified position
|
1908
|
+
from the current icon theme.
|
1909
|
+
</p>
|
1910
|
+
<p>
|
1911
|
+
If the icon name isn't known, a "broken image" icon will be displayed
|
1912
|
+
instead.
|
1913
|
+
</p>
|
1914
|
+
<p>
|
1915
|
+
If <em class="parameter"><code>icon_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>, no icon will be shown in the specified position.
|
1916
|
+
</p>
|
1917
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1918
|
+
<colgroup>
|
1919
|
+
<col align="left" valign="top">
|
1920
|
+
<col>
|
1921
|
+
</colgroup>
|
1922
|
+
<tbody>
|
1923
|
+
<tr>
|
1924
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1925
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1926
|
+
</td>
|
1927
|
+
</tr>
|
1928
|
+
<tr>
|
1929
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1930
|
+
<td>The position at which to set the icon</td>
|
1931
|
+
</tr>
|
1932
|
+
<tr>
|
1933
|
+
<td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
|
1934
|
+
<td>An icon 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>
|
1935
|
+
</td>
|
1936
|
+
</tr>
|
1937
|
+
</tbody>
|
1938
|
+
</table></div>
|
1939
|
+
<p class="since">Since 2.16</p>
|
1940
|
+
</div>
|
1941
|
+
<hr>
|
1942
|
+
<div class="refsect2">
|
1943
|
+
<a name="gtk-entry-set-icon-from-gicon"></a><h3>gtk_entry_set_icon_from_gicon ()</h3>
|
1944
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_icon_from_gicon (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1945
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
1946
|
+
<em class="parameter"><code><span class="type">GIcon</span> *icon</code></em>);</pre>
|
1947
|
+
<p>
|
1948
|
+
Sets the icon shown in the entry at the specified position
|
1949
|
+
from the current icon theme.
|
1950
|
+
If the icon isn't known, a "broken image" icon will be displayed
|
1951
|
+
instead.
|
1952
|
+
</p>
|
1953
|
+
<p>
|
1954
|
+
If <em class="parameter"><code>icon</code></em> is <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, no icon will be shown in the specified position.
|
1955
|
+
</p>
|
1956
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1957
|
+
<colgroup>
|
1958
|
+
<col align="left" valign="top">
|
1959
|
+
<col>
|
1960
|
+
</colgroup>
|
1961
|
+
<tbody>
|
1962
|
+
<tr>
|
1963
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1964
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1965
|
+
</td>
|
1966
|
+
</tr>
|
1967
|
+
<tr>
|
1968
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1969
|
+
<td>The position at which to set the icon</td>
|
1970
|
+
</tr>
|
1971
|
+
<tr>
|
1972
|
+
<td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
|
1973
|
+
<td>The icon to set, 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>
|
1974
|
+
</td>
|
1975
|
+
</tr>
|
1976
|
+
</tbody>
|
1977
|
+
</table></div>
|
1978
|
+
<p class="since">Since 2.16</p>
|
1979
|
+
</div>
|
1980
|
+
<hr>
|
1981
|
+
<div class="refsect2">
|
1982
|
+
<a name="gtk-entry-get-icon-storage-type"></a><h3>gtk_entry_get_icon_storage_type ()</h3>
|
1983
|
+
<pre class="programlisting"><a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="returnvalue">GtkImageType</span></a> gtk_entry_get_icon_storage_type (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1984
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);</pre>
|
1985
|
+
<p>
|
1986
|
+
Gets the type of representation being used by the icon
|
1987
|
+
to store image data. If the icon has no image data,
|
1988
|
+
the return value will be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a>.
|
1989
|
+
</p>
|
1990
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
1991
|
+
<colgroup>
|
1992
|
+
<col align="left" valign="top">
|
1993
|
+
<col>
|
1994
|
+
</colgroup>
|
1995
|
+
<tbody>
|
1996
|
+
<tr>
|
1997
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1998
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1999
|
+
</td>
|
2000
|
+
</tr>
|
2001
|
+
<tr>
|
2002
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2003
|
+
<td>Icon position</td>
|
2004
|
+
</tr>
|
2005
|
+
<tr>
|
2006
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2007
|
+
<td>image representation being used</td>
|
2008
|
+
</tr>
|
2009
|
+
</tbody>
|
2010
|
+
</table></div>
|
2011
|
+
<p class="since">Since 2.16</p>
|
2012
|
+
</div>
|
2013
|
+
<hr>
|
2014
|
+
<div class="refsect2">
|
2015
|
+
<a name="gtk-entry-get-icon-pixbuf"></a><h3>gtk_entry_get_icon_pixbuf ()</h3>
|
2016
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * gtk_entry_get_icon_pixbuf (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2017
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);</pre>
|
2018
|
+
<p>
|
2019
|
+
Retrieves the image used for the icon.
|
2020
|
+
</p>
|
2021
|
+
<p>
|
2022
|
+
Unlike the other methods of setting and getting icon data, this
|
2023
|
+
method will work regardless of whether the icon was set using a
|
2024
|
+
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>, a <span class="type">GIcon</span>, a stock item, or an icon name.
|
2025
|
+
</p>
|
2026
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2027
|
+
<colgroup>
|
2028
|
+
<col align="left" valign="top">
|
2029
|
+
<col>
|
2030
|
+
</colgroup>
|
2031
|
+
<tbody>
|
2032
|
+
<tr>
|
2033
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2034
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2035
|
+
</td>
|
2036
|
+
</tr>
|
2037
|
+
<tr>
|
2038
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2039
|
+
<td>Icon position</td>
|
2040
|
+
</tr>
|
2041
|
+
<tr>
|
2042
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2043
|
+
<td>A <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if no icon is
|
2044
|
+
set for this position. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2045
|
+
</td>
|
2046
|
+
</tr>
|
2047
|
+
</tbody>
|
2048
|
+
</table></div>
|
2049
|
+
<p class="since">Since 2.16</p>
|
2050
|
+
</div>
|
2051
|
+
<hr>
|
2052
|
+
<div class="refsect2">
|
2053
|
+
<a name="gtk-entry-get-icon-stock"></a><h3>gtk_entry_get_icon_stock ()</h3>
|
2054
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> * gtk_entry_get_icon_stock (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2055
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);</pre>
|
2056
|
+
<p>
|
2057
|
+
Retrieves the stock id used for the icon, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if there is
|
2058
|
+
no icon or if the icon was set by some other method (e.g., by
|
2059
|
+
pixbuf, icon name or gicon).
|
2060
|
+
</p>
|
2061
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2062
|
+
<colgroup>
|
2063
|
+
<col align="left" valign="top">
|
2064
|
+
<col>
|
2065
|
+
</colgroup>
|
2066
|
+
<tbody>
|
2067
|
+
<tr>
|
2068
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2069
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2070
|
+
</td>
|
2071
|
+
</tr>
|
2072
|
+
<tr>
|
2073
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2074
|
+
<td>Icon position</td>
|
2075
|
+
</tr>
|
2076
|
+
<tr>
|
2077
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2078
|
+
<td>A stock id, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if no icon is set or if the icon
|
2079
|
+
wasn't set from a stock id</td>
|
2080
|
+
</tr>
|
2081
|
+
</tbody>
|
2082
|
+
</table></div>
|
2083
|
+
<p class="since">Since 2.16</p>
|
2084
|
+
</div>
|
2085
|
+
<hr>
|
2086
|
+
<div class="refsect2">
|
2087
|
+
<a name="gtk-entry-get-icon-name"></a><h3>gtk_entry_get_icon_name ()</h3>
|
2088
|
+
<pre class="programlisting">const <span class="returnvalue">gchar</span> * gtk_entry_get_icon_name (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2089
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);</pre>
|
2090
|
+
<p>
|
2091
|
+
Retrieves the icon name used for the icon, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if there is
|
2092
|
+
no icon or if the icon was set by some other method (e.g., by
|
2093
|
+
pixbuf, stock or gicon).
|
2094
|
+
</p>
|
2095
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2096
|
+
<colgroup>
|
2097
|
+
<col align="left" valign="top">
|
2098
|
+
<col>
|
2099
|
+
</colgroup>
|
2100
|
+
<tbody>
|
2101
|
+
<tr>
|
2102
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2103
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2104
|
+
</td>
|
2105
|
+
</tr>
|
2106
|
+
<tr>
|
2107
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2108
|
+
<td>Icon position</td>
|
2109
|
+
</tr>
|
2110
|
+
<tr>
|
2111
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2112
|
+
<td>An icon name, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if no icon is set or if the icon
|
2113
|
+
wasn't set from an icon name</td>
|
2114
|
+
</tr>
|
2115
|
+
</tbody>
|
2116
|
+
</table></div>
|
2117
|
+
<p class="since">Since 2.16</p>
|
2118
|
+
</div>
|
2119
|
+
<hr>
|
2120
|
+
<div class="refsect2">
|
2121
|
+
<a name="gtk-entry-get-icon-gicon"></a><h3>gtk_entry_get_icon_gicon ()</h3>
|
2122
|
+
<pre class="programlisting"><span class="returnvalue">GIcon</span> * gtk_entry_get_icon_gicon (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2123
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);</pre>
|
2124
|
+
<p>
|
2125
|
+
Retrieves the <span class="type">GIcon</span> used for the icon, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if there is
|
2126
|
+
no icon or if the icon was set by some other method (e.g., by
|
2127
|
+
stock, pixbuf, or icon name).
|
2128
|
+
</p>
|
2129
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2130
|
+
<colgroup>
|
2131
|
+
<col align="left" valign="top">
|
2132
|
+
<col>
|
2133
|
+
</colgroup>
|
2134
|
+
<tbody>
|
2135
|
+
<tr>
|
2136
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2137
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2138
|
+
</td>
|
2139
|
+
</tr>
|
2140
|
+
<tr>
|
2141
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2142
|
+
<td>Icon position</td>
|
2143
|
+
</tr>
|
2144
|
+
<tr>
|
2145
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2146
|
+
<td>A <span class="type">GIcon</span>, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> if no icon is set
|
2147
|
+
or if the icon is not a <span class="type">GIcon</span>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2148
|
+
</td>
|
2149
|
+
</tr>
|
2150
|
+
</tbody>
|
2151
|
+
</table></div>
|
2152
|
+
<p class="since">Since 2.16</p>
|
2153
|
+
</div>
|
2154
|
+
<hr>
|
2155
|
+
<div class="refsect2">
|
2156
|
+
<a name="gtk-entry-set-icon-activatable"></a><h3>gtk_entry_set_icon_activatable ()</h3>
|
2157
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_icon_activatable (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2158
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
2159
|
+
<em class="parameter"><code><span class="type">gboolean</span> activatable</code></em>);</pre>
|
2160
|
+
<p>
|
2161
|
+
Sets whether the icon is activatable.
|
2162
|
+
</p>
|
2163
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2164
|
+
<colgroup>
|
2165
|
+
<col align="left" valign="top">
|
2166
|
+
<col>
|
2167
|
+
</colgroup>
|
2168
|
+
<tbody>
|
2169
|
+
<tr>
|
2170
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2171
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2172
|
+
</td>
|
2173
|
+
</tr>
|
2174
|
+
<tr>
|
2175
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2176
|
+
<td>Icon position</td>
|
2177
|
+
</tr>
|
2178
|
+
<tr>
|
2179
|
+
<td><p><span class="term"><em class="parameter"><code>activatable</code></em> :</span></p></td>
|
2180
|
+
<td>
|
2181
|
+
<code class="literal">TRUE</code> if the icon should be activatable</td>
|
2182
|
+
</tr>
|
2183
|
+
</tbody>
|
2184
|
+
</table></div>
|
2185
|
+
<p class="since">Since 2.16</p>
|
2186
|
+
</div>
|
2187
|
+
<hr>
|
2188
|
+
<div class="refsect2">
|
2189
|
+
<a name="gtk-entry-get-icon-activatable"></a><h3>gtk_entry_get_icon_activatable ()</h3>
|
2190
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_entry_get_icon_activatable (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2191
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);</pre>
|
2192
|
+
<p>
|
2193
|
+
Returns whether the icon is activatable.
|
2194
|
+
</p>
|
2195
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2196
|
+
<colgroup>
|
2197
|
+
<col align="left" valign="top">
|
2198
|
+
<col>
|
2199
|
+
</colgroup>
|
2200
|
+
<tbody>
|
2201
|
+
<tr>
|
2202
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2203
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2204
|
+
</td>
|
2205
|
+
</tr>
|
2206
|
+
<tr>
|
2207
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2208
|
+
<td>Icon position</td>
|
2209
|
+
</tr>
|
2210
|
+
<tr>
|
2211
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2212
|
+
<td>
|
2213
|
+
<code class="literal">TRUE</code> if the icon is activatable.</td>
|
2214
|
+
</tr>
|
2215
|
+
</tbody>
|
2216
|
+
</table></div>
|
2217
|
+
<p class="since">Since 2.16</p>
|
2218
|
+
</div>
|
2219
|
+
<hr>
|
2220
|
+
<div class="refsect2">
|
2221
|
+
<a name="gtk-entry-set-icon-sensitive"></a><h3>gtk_entry_set_icon_sensitive ()</h3>
|
2222
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_icon_sensitive (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2223
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
2224
|
+
<em class="parameter"><code><span class="type">gboolean</span> sensitive</code></em>);</pre>
|
2225
|
+
<p>
|
2226
|
+
Sets the sensitivity for the specified icon.
|
2227
|
+
</p>
|
2228
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2229
|
+
<colgroup>
|
2230
|
+
<col align="left" valign="top">
|
2231
|
+
<col>
|
2232
|
+
</colgroup>
|
2233
|
+
<tbody>
|
2234
|
+
<tr>
|
2235
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2236
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2237
|
+
</td>
|
2238
|
+
</tr>
|
2239
|
+
<tr>
|
2240
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2241
|
+
<td>Icon position</td>
|
2242
|
+
</tr>
|
2243
|
+
<tr>
|
2244
|
+
<td><p><span class="term"><em class="parameter"><code>sensitive</code></em> :</span></p></td>
|
2245
|
+
<td>Specifies whether the icon should appear
|
2246
|
+
sensitive or insensitive</td>
|
2247
|
+
</tr>
|
2248
|
+
</tbody>
|
2249
|
+
</table></div>
|
2250
|
+
<p class="since">Since 2.16</p>
|
2251
|
+
</div>
|
2252
|
+
<hr>
|
2253
|
+
<div class="refsect2">
|
2254
|
+
<a name="gtk-entry-get-icon-sensitive"></a><h3>gtk_entry_get_icon_sensitive ()</h3>
|
2255
|
+
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_entry_get_icon_sensitive (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2256
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);</pre>
|
2257
|
+
<p>
|
2258
|
+
Returns whether the icon appears sensitive or insensitive.
|
2259
|
+
</p>
|
2260
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2261
|
+
<colgroup>
|
2262
|
+
<col align="left" valign="top">
|
2263
|
+
<col>
|
2264
|
+
</colgroup>
|
2265
|
+
<tbody>
|
2266
|
+
<tr>
|
2267
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2268
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2269
|
+
</td>
|
2270
|
+
</tr>
|
2271
|
+
<tr>
|
2272
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2273
|
+
<td>Icon position</td>
|
2274
|
+
</tr>
|
2275
|
+
<tr>
|
2276
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2277
|
+
<td>
|
2278
|
+
<code class="literal">TRUE</code> if the icon is sensitive.</td>
|
2279
|
+
</tr>
|
2280
|
+
</tbody>
|
2281
|
+
</table></div>
|
2282
|
+
<p class="since">Since 2.16</p>
|
2283
|
+
</div>
|
2284
|
+
<hr>
|
2285
|
+
<div class="refsect2">
|
2286
|
+
<a name="gtk-entry-get-icon-at-pos"></a><h3>gtk_entry_get_icon_at_pos ()</h3>
|
2287
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_entry_get_icon_at_pos (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2288
|
+
<em class="parameter"><code><span class="type">gint</span> x</code></em>,
|
2289
|
+
<em class="parameter"><code><span class="type">gint</span> y</code></em>);</pre>
|
2290
|
+
<p>
|
2291
|
+
Finds the icon at the given position and return its index. The
|
2292
|
+
position's coordinates are relative to the <em class="parameter"><code>entry</code></em>'s top left corner.
|
2293
|
+
If <em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em> doesn't lie inside an icon, -1 is returned.
|
2294
|
+
This function is intended for use in a <a class="link" href="GtkWidget.html#GtkWidget-query-tooltip" title='The "query-tooltip" signal'><span class="type">"query-tooltip"</span></a>
|
2295
|
+
signal handler.
|
2296
|
+
</p>
|
2297
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2298
|
+
<colgroup>
|
2299
|
+
<col align="left" valign="top">
|
2300
|
+
<col>
|
2301
|
+
</colgroup>
|
2302
|
+
<tbody>
|
2303
|
+
<tr>
|
2304
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2305
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2306
|
+
</td>
|
2307
|
+
</tr>
|
2308
|
+
<tr>
|
2309
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
2310
|
+
<td>the x coordinate of the position to find</td>
|
2311
|
+
</tr>
|
2312
|
+
<tr>
|
2313
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
2314
|
+
<td>the y coordinate of the position to find</td>
|
2315
|
+
</tr>
|
2316
|
+
<tr>
|
2317
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2318
|
+
<td>the index of the icon at the given position, or -1</td>
|
2319
|
+
</tr>
|
2320
|
+
</tbody>
|
2321
|
+
</table></div>
|
2322
|
+
<p class="since">Since 2.16</p>
|
2323
|
+
</div>
|
2324
|
+
<hr>
|
2325
|
+
<div class="refsect2">
|
2326
|
+
<a name="gtk-entry-set-icon-tooltip-text"></a><h3>gtk_entry_set_icon_tooltip_text ()</h3>
|
2327
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_icon_tooltip_text (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2328
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
2329
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *tooltip</code></em>);</pre>
|
2330
|
+
<p>
|
2331
|
+
Sets <em class="parameter"><code>tooltip</code></em> as the contents of the tooltip for the icon
|
2332
|
+
at the specified position.
|
2333
|
+
</p>
|
2334
|
+
<p>
|
2335
|
+
Use <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> for <em class="parameter"><code>tooltip</code></em> to remove an existing tooltip.
|
2336
|
+
</p>
|
2337
|
+
<p>
|
2338
|
+
See also <a class="link" href="GtkWidget.html#gtk-widget-set-tooltip-text" title="gtk_widget_set_tooltip_text ()"><code class="function">gtk_widget_set_tooltip_text()</code></a> and
|
2339
|
+
<a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-markup" title="gtk_entry_set_icon_tooltip_markup ()"><code class="function">gtk_entry_set_icon_tooltip_markup()</code></a>.
|
2340
|
+
</p>
|
2341
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2342
|
+
<colgroup>
|
2343
|
+
<col align="left" valign="top">
|
2344
|
+
<col>
|
2345
|
+
</colgroup>
|
2346
|
+
<tbody>
|
2347
|
+
<tr>
|
2348
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2349
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2350
|
+
</td>
|
2351
|
+
</tr>
|
2352
|
+
<tr>
|
2353
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2354
|
+
<td>the icon position</td>
|
2355
|
+
</tr>
|
2356
|
+
<tr>
|
2357
|
+
<td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
|
2358
|
+
<td>the contents of the tooltip for the icon, 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>
|
2359
|
+
</td>
|
2360
|
+
</tr>
|
2361
|
+
</tbody>
|
2362
|
+
</table></div>
|
2363
|
+
<p class="since">Since 2.16</p>
|
2364
|
+
</div>
|
2365
|
+
<hr>
|
2366
|
+
<div class="refsect2">
|
2367
|
+
<a name="gtk-entry-get-icon-tooltip-text"></a><h3>gtk_entry_get_icon_tooltip_text ()</h3>
|
2368
|
+
<pre class="programlisting"><span class="returnvalue">gchar</span> * gtk_entry_get_icon_tooltip_text (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2369
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);</pre>
|
2370
|
+
<p>
|
2371
|
+
Gets the contents of the tooltip on the icon at the specified
|
2372
|
+
position in <em class="parameter"><code>entry</code></em>.
|
2373
|
+
</p>
|
2374
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2375
|
+
<colgroup>
|
2376
|
+
<col align="left" valign="top">
|
2377
|
+
<col>
|
2378
|
+
</colgroup>
|
2379
|
+
<tbody>
|
2380
|
+
<tr>
|
2381
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2382
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2383
|
+
</td>
|
2384
|
+
</tr>
|
2385
|
+
<tr>
|
2386
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2387
|
+
<td>the icon position</td>
|
2388
|
+
</tr>
|
2389
|
+
<tr>
|
2390
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2391
|
+
<td>the tooltip text, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. Free the returned string
|
2392
|
+
with <code class="function">g_free()</code> when done.</td>
|
2393
|
+
</tr>
|
2394
|
+
</tbody>
|
2395
|
+
</table></div>
|
2396
|
+
<p class="since">Since 2.16</p>
|
2397
|
+
</div>
|
2398
|
+
<hr>
|
2399
|
+
<div class="refsect2">
|
2400
|
+
<a name="gtk-entry-set-icon-tooltip-markup"></a><h3>gtk_entry_set_icon_tooltip_markup ()</h3>
|
2401
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_icon_tooltip_markup (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2402
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
2403
|
+
<em class="parameter"><code>const <span class="type">gchar</span> *tooltip</code></em>);</pre>
|
2404
|
+
<p>
|
2405
|
+
Sets <em class="parameter"><code>tooltip</code></em> as the contents of the tooltip for the icon at
|
2406
|
+
the specified position. <em class="parameter"><code>tooltip</code></em> is assumed to be marked up with
|
2407
|
+
the Pango text markup language.
|
2408
|
+
</p>
|
2409
|
+
<p>
|
2410
|
+
Use <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> for <em class="parameter"><code>tooltip</code></em> to remove an existing tooltip.
|
2411
|
+
</p>
|
2412
|
+
<p>
|
2413
|
+
See also <a class="link" href="GtkWidget.html#gtk-widget-set-tooltip-markup" title="gtk_widget_set_tooltip_markup ()"><code class="function">gtk_widget_set_tooltip_markup()</code></a> and
|
2414
|
+
<a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-text" title="gtk_entry_set_icon_tooltip_text ()"><code class="function">gtk_entry_set_icon_tooltip_text()</code></a>.
|
2415
|
+
</p>
|
2416
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2417
|
+
<colgroup>
|
2418
|
+
<col align="left" valign="top">
|
2419
|
+
<col>
|
2420
|
+
</colgroup>
|
2421
|
+
<tbody>
|
2422
|
+
<tr>
|
2423
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2424
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2425
|
+
</td>
|
2426
|
+
</tr>
|
2427
|
+
<tr>
|
2428
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2429
|
+
<td>the icon position</td>
|
2430
|
+
</tr>
|
2431
|
+
<tr>
|
2432
|
+
<td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
|
2433
|
+
<td>the contents of the tooltip for the icon, 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>
|
2434
|
+
</td>
|
2435
|
+
</tr>
|
2436
|
+
</tbody>
|
2437
|
+
</table></div>
|
2438
|
+
<p class="since">Since 2.16</p>
|
2439
|
+
</div>
|
2440
|
+
<hr>
|
2441
|
+
<div class="refsect2">
|
2442
|
+
<a name="gtk-entry-get-icon-tooltip-markup"></a><h3>gtk_entry_get_icon_tooltip_markup ()</h3>
|
2443
|
+
<pre class="programlisting"><span class="returnvalue">gchar</span> * gtk_entry_get_icon_tooltip_markup (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2444
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);</pre>
|
2445
|
+
<p>
|
2446
|
+
Gets the contents of the tooltip on the icon at the specified
|
2447
|
+
position in <em class="parameter"><code>entry</code></em>.
|
2448
|
+
</p>
|
2449
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2450
|
+
<colgroup>
|
2451
|
+
<col align="left" valign="top">
|
2452
|
+
<col>
|
2453
|
+
</colgroup>
|
2454
|
+
<tbody>
|
2455
|
+
<tr>
|
2456
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2457
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2458
|
+
</td>
|
2459
|
+
</tr>
|
2460
|
+
<tr>
|
2461
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2462
|
+
<td>the icon position</td>
|
2463
|
+
</tr>
|
2464
|
+
<tr>
|
2465
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2466
|
+
<td>the tooltip text, or <a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>. Free the returned string
|
2467
|
+
with <code class="function">g_free()</code> when done.</td>
|
2468
|
+
</tr>
|
2469
|
+
</tbody>
|
2470
|
+
</table></div>
|
2471
|
+
<p class="since">Since 2.16</p>
|
2472
|
+
</div>
|
2473
|
+
<hr>
|
2474
|
+
<div class="refsect2">
|
2475
|
+
<a name="gtk-entry-set-icon-drag-source"></a><h3>gtk_entry_set_icon_drag_source ()</h3>
|
2476
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_icon_drag_source (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2477
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
2478
|
+
<em class="parameter"><code><a class="link" href="gtk3-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>,
|
2479
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
|
2480
|
+
<p>
|
2481
|
+
Sets up the icon at the given position so that GTK+ will start a drag
|
2482
|
+
operation when the user clicks and drags the icon.
|
2483
|
+
</p>
|
2484
|
+
<p>
|
2485
|
+
To handle the drag operation, you need to connect to the usual
|
2486
|
+
<a class="link" href="GtkWidget.html#GtkWidget-drag-data-get" title='The "drag-data-get" signal'><span class="type">"drag-data-get"</span></a> (or possibly <a class="link" href="GtkWidget.html#GtkWidget-drag-data-delete" title='The "drag-data-delete" signal'><span class="type">"drag-data-delete"</span></a>)
|
2487
|
+
signal, and use <a class="link" href="GtkEntry.html#gtk-entry-get-current-icon-drag-source" title="gtk_entry_get_current_icon_drag_source ()"><code class="function">gtk_entry_get_current_icon_drag_source()</code></a> in
|
2488
|
+
your signal handler to find out if the drag was started from
|
2489
|
+
an icon.
|
2490
|
+
</p>
|
2491
|
+
<p>
|
2492
|
+
By default, GTK+ uses the icon as the drag icon. You can use the
|
2493
|
+
<a class="link" href="GtkWidget.html#GtkWidget-drag-begin" title='The "drag-begin" signal'><span class="type">"drag-begin"</span></a> signal to set a different icon. Note that you
|
2494
|
+
have to use <code class="function">g_signal_connect_after()</code> to ensure that your signal handler
|
2495
|
+
gets executed after the default handler.
|
2496
|
+
</p>
|
2497
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2498
|
+
<colgroup>
|
2499
|
+
<col align="left" valign="top">
|
2500
|
+
<col>
|
2501
|
+
</colgroup>
|
2502
|
+
<tbody>
|
2503
|
+
<tr>
|
2504
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2505
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2506
|
+
</td>
|
2507
|
+
</tr>
|
2508
|
+
<tr>
|
2509
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2510
|
+
<td>icon position</td>
|
2511
|
+
</tr>
|
2512
|
+
<tr>
|
2513
|
+
<td><p><span class="term"><em class="parameter"><code>target_list</code></em> :</span></p></td>
|
2514
|
+
<td>the targets (data formats) in which the data can be provided</td>
|
2515
|
+
</tr>
|
2516
|
+
<tr>
|
2517
|
+
<td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
|
2518
|
+
<td>a bitmask of the allowed drag actions</td>
|
2519
|
+
</tr>
|
2520
|
+
</tbody>
|
2521
|
+
</table></div>
|
2522
|
+
<p class="since">Since 2.16</p>
|
2523
|
+
</div>
|
2524
|
+
<hr>
|
2525
|
+
<div class="refsect2">
|
2526
|
+
<a name="gtk-entry-get-current-icon-drag-source"></a><h3>gtk_entry_get_current_icon_drag_source ()</h3>
|
2527
|
+
<pre class="programlisting"><span class="returnvalue">gint</span> gtk_entry_get_current_icon_drag_source
|
2528
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
2529
|
+
<p>
|
2530
|
+
Returns the index of the icon which is the source of the current
|
2531
|
+
DND operation, or -1.
|
2532
|
+
</p>
|
2533
|
+
<p>
|
2534
|
+
This function is meant to be used in a <a class="link" href="GtkWidget.html#GtkWidget-drag-data-get" title='The "drag-data-get" signal'><span class="type">"drag-data-get"</span></a>
|
2535
|
+
callback.
|
2536
|
+
</p>
|
2537
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2538
|
+
<colgroup>
|
2539
|
+
<col align="left" valign="top">
|
2540
|
+
<col>
|
2541
|
+
</colgroup>
|
2542
|
+
<tbody>
|
2543
|
+
<tr>
|
2544
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2545
|
+
<td>a <span class="type">GtkIconEntry</span>
|
2546
|
+
</td>
|
2547
|
+
</tr>
|
2548
|
+
<tr>
|
2549
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2550
|
+
<td>index of the icon which is the source of the current
|
2551
|
+
DND operation, or -1.</td>
|
2552
|
+
</tr>
|
2553
|
+
</tbody>
|
2554
|
+
</table></div>
|
2555
|
+
<p class="since">Since 2.16</p>
|
2556
|
+
</div>
|
2557
|
+
<hr>
|
2558
|
+
<div class="refsect2">
|
2559
|
+
<a name="gtk-entry-get-icon-area"></a><h3>gtk_entry_get_icon_area ()</h3>
|
2560
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_get_icon_area (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2561
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
2562
|
+
<em class="parameter"><code><a href="../gdk3/gdk3-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *icon_area</code></em>);</pre>
|
2563
|
+
<p>
|
2564
|
+
Gets the area where entry's icon at <em class="parameter"><code>icon_pos</code></em> is drawn.
|
2565
|
+
This function is useful when drawing something to the
|
2566
|
+
entry in a draw callback.
|
2567
|
+
</p>
|
2568
|
+
<p>
|
2569
|
+
If the entry is not realized or has no icon at the given position,
|
2570
|
+
<em class="parameter"><code>icon_area</code></em> is filled with zeros.
|
2571
|
+
</p>
|
2572
|
+
<p>
|
2573
|
+
See also <a class="link" href="GtkEntry.html#gtk-entry-get-text-area" title="gtk_entry_get_text_area ()"><code class="function">gtk_entry_get_text_area()</code></a>
|
2574
|
+
</p>
|
2575
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2576
|
+
<colgroup>
|
2577
|
+
<col align="left" valign="top">
|
2578
|
+
<col>
|
2579
|
+
</colgroup>
|
2580
|
+
<tbody>
|
2581
|
+
<tr>
|
2582
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2583
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2584
|
+
</td>
|
2585
|
+
</tr>
|
2586
|
+
<tr>
|
2587
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2588
|
+
<td>Icon position</td>
|
2589
|
+
</tr>
|
2590
|
+
<tr>
|
2591
|
+
<td><p><span class="term"><em class="parameter"><code>icon_area</code></em> :</span></p></td>
|
2592
|
+
<td>Return location for the icon's area. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2593
|
+
</td>
|
2594
|
+
</tr>
|
2595
|
+
</tbody>
|
2596
|
+
</table></div>
|
2597
|
+
<p class="since">Since 3.0</p>
|
2598
|
+
</div>
|
2599
|
+
<hr>
|
2600
|
+
<div class="refsect2">
|
2601
|
+
<a name="GtkInputPurpose"></a><h3>enum GtkInputPurpose</h3>
|
2602
|
+
<pre class="programlisting">typedef enum {
|
2603
|
+
GTK_INPUT_PURPOSE_FREE_FORM,
|
2604
|
+
GTK_INPUT_PURPOSE_ALPHA,
|
2605
|
+
GTK_INPUT_PURPOSE_DIGITS,
|
2606
|
+
GTK_INPUT_PURPOSE_NUMBER,
|
2607
|
+
GTK_INPUT_PURPOSE_PHONE,
|
2608
|
+
GTK_INPUT_PURPOSE_URL,
|
2609
|
+
GTK_INPUT_PURPOSE_EMAIL,
|
2610
|
+
GTK_INPUT_PURPOSE_NAME,
|
2611
|
+
GTK_INPUT_PURPOSE_PASSWORD,
|
2612
|
+
GTK_INPUT_PURPOSE_PIN
|
2613
|
+
} GtkInputPurpose;
|
2614
|
+
</pre>
|
2615
|
+
<p>
|
2616
|
+
Describes primary purpose of the input widget. This information is
|
2617
|
+
useful for on-screen keyboards and similar input methods to decide
|
2618
|
+
which keys should be presented to the user.
|
2619
|
+
</p>
|
2620
|
+
<p>
|
2621
|
+
Note that the purpose is not meant to impose a totally strict rule
|
2622
|
+
about allowed characters, and does not replace input validation.
|
2623
|
+
It is fine for an on-screen keyboard to let the user override the
|
2624
|
+
character set restriction that is expressed by the purpose. The
|
2625
|
+
application is expected to validate the entry contents, even if
|
2626
|
+
it specified a purpose.
|
2627
|
+
</p>
|
2628
|
+
<p>
|
2629
|
+
The difference between <em class="parameter"><code>GTK_INPUT_PURPOSE_DIGITS</code></em> and
|
2630
|
+
<em class="parameter"><code>GTK_INPUT_PURPOSE_NUMBER</code></em> is that the former accepts only digits
|
2631
|
+
while the latter also some punctuation (like commas or points, plus,
|
2632
|
+
minus) and 'e' or 'E' as in 3.14E+000.
|
2633
|
+
</p>
|
2634
|
+
<p>
|
2635
|
+
This enumeration may be extended in the future; input methods should
|
2636
|
+
interpret unknown values as 'free form'.
|
2637
|
+
</p>
|
2638
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2639
|
+
<colgroup>
|
2640
|
+
<col align="left" valign="top">
|
2641
|
+
<col>
|
2642
|
+
</colgroup>
|
2643
|
+
<tbody>
|
2644
|
+
<tr>
|
2645
|
+
<td><p><a name="GTK-INPUT-PURPOSE-FREE-FORM:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_PURPOSE_FREE_FORM</code></span></p></td>
|
2646
|
+
<td>Allow any character
|
2647
|
+
</td>
|
2648
|
+
</tr>
|
2649
|
+
<tr>
|
2650
|
+
<td><p><a name="GTK-INPUT-PURPOSE-ALPHA:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_PURPOSE_ALPHA</code></span></p></td>
|
2651
|
+
<td>Allow only alphabetic characters
|
2652
|
+
</td>
|
2653
|
+
</tr>
|
2654
|
+
<tr>
|
2655
|
+
<td><p><a name="GTK-INPUT-PURPOSE-DIGITS:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_PURPOSE_DIGITS</code></span></p></td>
|
2656
|
+
<td>Allow only digits
|
2657
|
+
</td>
|
2658
|
+
</tr>
|
2659
|
+
<tr>
|
2660
|
+
<td><p><a name="GTK-INPUT-PURPOSE-NUMBER:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_PURPOSE_NUMBER</code></span></p></td>
|
2661
|
+
<td>Edited field expects numbers
|
2662
|
+
</td>
|
2663
|
+
</tr>
|
2664
|
+
<tr>
|
2665
|
+
<td><p><a name="GTK-INPUT-PURPOSE-PHONE:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_PURPOSE_PHONE</code></span></p></td>
|
2666
|
+
<td>Edited field expects phone number
|
2667
|
+
</td>
|
2668
|
+
</tr>
|
2669
|
+
<tr>
|
2670
|
+
<td><p><a name="GTK-INPUT-PURPOSE-URL:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_PURPOSE_URL</code></span></p></td>
|
2671
|
+
<td>Edited field expects URL
|
2672
|
+
</td>
|
2673
|
+
</tr>
|
2674
|
+
<tr>
|
2675
|
+
<td><p><a name="GTK-INPUT-PURPOSE-EMAIL:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_PURPOSE_EMAIL</code></span></p></td>
|
2676
|
+
<td>Edited field expects email address
|
2677
|
+
</td>
|
2678
|
+
</tr>
|
2679
|
+
<tr>
|
2680
|
+
<td><p><a name="GTK-INPUT-PURPOSE-NAME:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_PURPOSE_NAME</code></span></p></td>
|
2681
|
+
<td>Edited field expects the name of a person
|
2682
|
+
</td>
|
2683
|
+
</tr>
|
2684
|
+
<tr>
|
2685
|
+
<td><p><a name="GTK-INPUT-PURPOSE-PASSWORD:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_PURPOSE_PASSWORD</code></span></p></td>
|
2686
|
+
<td>Like <em class="parameter"><code>GTK_INPUT_PURPOSE_FREE_FORM</code></em>, but characters are hidden
|
2687
|
+
</td>
|
2688
|
+
</tr>
|
2689
|
+
<tr>
|
2690
|
+
<td><p><a name="GTK-INPUT-PURPOSE-PIN:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_PURPOSE_PIN</code></span></p></td>
|
2691
|
+
<td>Like <em class="parameter"><code>GTK_INPUT_PURPOSE_DIGITS</code></em>, but characters are hidden
|
2692
|
+
</td>
|
2693
|
+
</tr>
|
2694
|
+
</tbody>
|
2695
|
+
</table></div>
|
2696
|
+
<p class="since">Since 3.6</p>
|
2697
|
+
</div>
|
2698
|
+
<hr>
|
2699
|
+
<div class="refsect2">
|
2700
|
+
<a name="gtk-entry-set-input-purpose"></a><h3>gtk_entry_set_input_purpose ()</h3>
|
2701
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_input_purpose (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2702
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="type">GtkInputPurpose</span></a> purpose</code></em>);</pre>
|
2703
|
+
<p>
|
2704
|
+
Sets the <a class="link" href="GtkEntry.html#GtkEntry--input-purpose" title='The "input-purpose" property'><span class="type">"input-purpose"</span></a> property which
|
2705
|
+
can be used by on-screen keyboards and other input
|
2706
|
+
methods to adjust their behaviour.
|
2707
|
+
</p>
|
2708
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2709
|
+
<colgroup>
|
2710
|
+
<col align="left" valign="top">
|
2711
|
+
<col>
|
2712
|
+
</colgroup>
|
2713
|
+
<tbody>
|
2714
|
+
<tr>
|
2715
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2716
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2717
|
+
</td>
|
2718
|
+
</tr>
|
2719
|
+
<tr>
|
2720
|
+
<td><p><span class="term"><em class="parameter"><code>purpose</code></em> :</span></p></td>
|
2721
|
+
<td>the purpose</td>
|
2722
|
+
</tr>
|
2723
|
+
</tbody>
|
2724
|
+
</table></div>
|
2725
|
+
<p class="since">Since 3.6</p>
|
2726
|
+
</div>
|
2727
|
+
<hr>
|
2728
|
+
<div class="refsect2">
|
2729
|
+
<a name="gtk-entry-get-input-purpose"></a><h3>gtk_entry_get_input_purpose ()</h3>
|
2730
|
+
<pre class="programlisting"><a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="returnvalue">GtkInputPurpose</span></a> gtk_entry_get_input_purpose (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
2731
|
+
<p>
|
2732
|
+
Gets the value of the <a class="link" href="GtkEntry.html#GtkEntry--input-purpose" title='The "input-purpose" property'><span class="type">"input-purpose"</span></a> property.
|
2733
|
+
</p>
|
2734
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2735
|
+
<colgroup>
|
2736
|
+
<col align="left" valign="top">
|
2737
|
+
<col>
|
2738
|
+
</colgroup>
|
2739
|
+
<tbody><tr>
|
2740
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2741
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2742
|
+
</td>
|
2743
|
+
</tr></tbody>
|
2744
|
+
</table></div>
|
2745
|
+
<p class="since">Since 3.6</p>
|
2746
|
+
</div>
|
2747
|
+
<hr>
|
2748
|
+
<div class="refsect2">
|
2749
|
+
<a name="GtkInputHints"></a><h3>enum GtkInputHints</h3>
|
2750
|
+
<pre class="programlisting">typedef enum {
|
2751
|
+
GTK_INPUT_HINT_NONE = 0,
|
2752
|
+
GTK_INPUT_HINT_SPELLCHECK = 1 << 0,
|
2753
|
+
GTK_INPUT_HINT_NO_SPELLCHECK = 1 << 1,
|
2754
|
+
GTK_INPUT_HINT_WORD_COMPLETION = 1 << 2,
|
2755
|
+
GTK_INPUT_HINT_LOWERCASE = 1 << 3,
|
2756
|
+
GTK_INPUT_HINT_UPPERCASE_CHARS = 1 << 4,
|
2757
|
+
GTK_INPUT_HINT_UPPERCASE_WORDS = 1 << 5,
|
2758
|
+
GTK_INPUT_HINT_UPPERCASE_SENTENCES = 1 << 6,
|
2759
|
+
GTK_INPUT_HINT_INHIBIT_OSK = 1 << 7
|
2760
|
+
} GtkInputHints;
|
2761
|
+
</pre>
|
2762
|
+
<p>
|
2763
|
+
Describes hints that might be taken into account by input methods
|
2764
|
+
or applications. Note that input methods may already tailor their
|
2765
|
+
behaviour according to the <a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="type">GtkInputPurpose</span></a> of the entry.
|
2766
|
+
</p>
|
2767
|
+
<p>
|
2768
|
+
Some common sense is expected when using these flags - mixing
|
2769
|
+
<em class="parameter"><code>GTK_INPUT_HINT_LOWERCASE</code></em> with any of the uppercase hints makes no sense.
|
2770
|
+
</p>
|
2771
|
+
<p>
|
2772
|
+
This enumeration may be extended in the future; input methods should
|
2773
|
+
ignore unknown values.
|
2774
|
+
</p>
|
2775
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2776
|
+
<colgroup>
|
2777
|
+
<col align="left" valign="top">
|
2778
|
+
<col>
|
2779
|
+
</colgroup>
|
2780
|
+
<tbody>
|
2781
|
+
<tr>
|
2782
|
+
<td><p><a name="GTK-INPUT-HINT-NONE:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_HINT_NONE</code></span></p></td>
|
2783
|
+
<td>No special behaviour suggested
|
2784
|
+
</td>
|
2785
|
+
</tr>
|
2786
|
+
<tr>
|
2787
|
+
<td><p><a name="GTK-INPUT-HINT-SPELLCHECK:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_HINT_SPELLCHECK</code></span></p></td>
|
2788
|
+
<td>Suggest checking for typos
|
2789
|
+
</td>
|
2790
|
+
</tr>
|
2791
|
+
<tr>
|
2792
|
+
<td><p><a name="GTK-INPUT-HINT-NO-SPELLCHECK:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_HINT_NO_SPELLCHECK</code></span></p></td>
|
2793
|
+
<td>Suggest not checking for typos
|
2794
|
+
</td>
|
2795
|
+
</tr>
|
2796
|
+
<tr>
|
2797
|
+
<td><p><a name="GTK-INPUT-HINT-WORD-COMPLETION:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_HINT_WORD_COMPLETION</code></span></p></td>
|
2798
|
+
<td>Suggest word completion
|
2799
|
+
</td>
|
2800
|
+
</tr>
|
2801
|
+
<tr>
|
2802
|
+
<td><p><a name="GTK-INPUT-HINT-LOWERCASE:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_HINT_LOWERCASE</code></span></p></td>
|
2803
|
+
<td>Suggest to convert all text to lowercase
|
2804
|
+
</td>
|
2805
|
+
</tr>
|
2806
|
+
<tr>
|
2807
|
+
<td><p><a name="GTK-INPUT-HINT-UPPERCASE-CHARS:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_HINT_UPPERCASE_CHARS</code></span></p></td>
|
2808
|
+
<td>Suggest to capitalize all text
|
2809
|
+
</td>
|
2810
|
+
</tr>
|
2811
|
+
<tr>
|
2812
|
+
<td><p><a name="GTK-INPUT-HINT-UPPERCASE-WORDS:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_HINT_UPPERCASE_WORDS</code></span></p></td>
|
2813
|
+
<td>Suggest to capitalize the first
|
2814
|
+
character of each word
|
2815
|
+
</td>
|
2816
|
+
</tr>
|
2817
|
+
<tr>
|
2818
|
+
<td><p><a name="GTK-INPUT-HINT-UPPERCASE-SENTENCES:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_HINT_UPPERCASE_SENTENCES</code></span></p></td>
|
2819
|
+
<td>Suggest to capitalize the
|
2820
|
+
first word of each sentence
|
2821
|
+
</td>
|
2822
|
+
</tr>
|
2823
|
+
<tr>
|
2824
|
+
<td><p><a name="GTK-INPUT-HINT-INHIBIT-OSK:CAPS"></a><span class="term"><code class="literal">GTK_INPUT_HINT_INHIBIT_OSK</code></span></p></td>
|
2825
|
+
<td>Suggest to not show an onscreen keyboard
|
2826
|
+
(e.g for a calculator that already has all the keys).
|
2827
|
+
</td>
|
2828
|
+
</tr>
|
2829
|
+
</tbody>
|
2830
|
+
</table></div>
|
2831
|
+
<p class="since">Since 3.6</p>
|
2832
|
+
</div>
|
2833
|
+
<hr>
|
2834
|
+
<div class="refsect2">
|
2835
|
+
<a name="gtk-entry-set-input-hints"></a><h3>gtk_entry_set_input_hints ()</h3>
|
2836
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_input_hints (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2837
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="type">GtkInputHints</span></a> hints</code></em>);</pre>
|
2838
|
+
<p>
|
2839
|
+
Sets the <a class="link" href="GtkEntry.html#GtkEntry--input-hints" title='The "input-hints" property'><span class="type">"input-hints"</span></a> property, which
|
2840
|
+
allows input methods to fine-tune their behaviour.
|
2841
|
+
</p>
|
2842
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2843
|
+
<colgroup>
|
2844
|
+
<col align="left" valign="top">
|
2845
|
+
<col>
|
2846
|
+
</colgroup>
|
2847
|
+
<tbody>
|
2848
|
+
<tr>
|
2849
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2850
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2851
|
+
</td>
|
2852
|
+
</tr>
|
2853
|
+
<tr>
|
2854
|
+
<td><p><span class="term"><em class="parameter"><code>hints</code></em> :</span></p></td>
|
2855
|
+
<td>the hints</td>
|
2856
|
+
</tr>
|
2857
|
+
</tbody>
|
2858
|
+
</table></div>
|
2859
|
+
<p class="since">Since 3.6</p>
|
2860
|
+
</div>
|
2861
|
+
<hr>
|
2862
|
+
<div class="refsect2">
|
2863
|
+
<a name="gtk-entry-get-input-hints"></a><h3>gtk_entry_get_input_hints ()</h3>
|
2864
|
+
<pre class="programlisting"><a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="returnvalue">GtkInputHints</span></a> gtk_entry_get_input_hints (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
2865
|
+
<p>
|
2866
|
+
Gets the value of the <a class="link" href="GtkEntry.html#GtkEntry--input-hints" title='The "input-hints" property'><span class="type">"input-hints"</span></a> property.
|
2867
|
+
</p>
|
2868
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
2869
|
+
<colgroup>
|
2870
|
+
<col align="left" valign="top">
|
2871
|
+
<col>
|
2872
|
+
</colgroup>
|
2873
|
+
<tbody><tr>
|
2874
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2875
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2876
|
+
</td>
|
2877
|
+
</tr></tbody>
|
2878
|
+
</table></div>
|
2879
|
+
<p class="since">Since 3.6</p>
|
2880
|
+
</div>
|
2881
|
+
</div>
|
2882
|
+
<div class="refsect1">
|
2883
|
+
<a name="GtkEntry.property-details"></a><h2>Property Details</h2>
|
2884
|
+
<div class="refsect2">
|
2885
|
+
<a name="GtkEntry--activates-default"></a><h3>The <code class="literal">"activates-default"</code> property</h3>
|
2886
|
+
<pre class="programlisting"> "activates-default" <span class="type">gboolean</span> : Read / Write</pre>
|
2887
|
+
<p>Whether to activate the default widget (such as the default button in a dialog) when Enter is pressed.</p>
|
2888
|
+
<p>Default value: FALSE</p>
|
2889
|
+
</div>
|
2890
|
+
<hr>
|
2891
|
+
<div class="refsect2">
|
2892
|
+
<a name="GtkEntry--attributes"></a><h3>The <code class="literal">"attributes"</code> property</h3>
|
2893
|
+
<pre class="programlisting"> "attributes" <span class="type">PangoAttrList</span>* : Read / Write</pre>
|
2894
|
+
<p>
|
2895
|
+
A list of Pango attributes to apply to the text of the entry.
|
2896
|
+
</p>
|
2897
|
+
<p>
|
2898
|
+
This is mainly useful to change the size or weight of the text.
|
2899
|
+
</p>
|
2900
|
+
<p class="since">Since 3.6</p>
|
2901
|
+
</div>
|
2902
|
+
<hr>
|
2903
|
+
<div class="refsect2">
|
2904
|
+
<a name="GtkEntry--buffer"></a><h3>The <code class="literal">"buffer"</code> property</h3>
|
2905
|
+
<pre class="programlisting"> "buffer" <a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a>* : Read / Write / Construct</pre>
|
2906
|
+
<p>Text buffer object which actually stores entry text.</p>
|
2907
|
+
</div>
|
2908
|
+
<hr>
|
2909
|
+
<div class="refsect2">
|
2910
|
+
<a name="GtkEntry--caps-lock-warning"></a><h3>The <code class="literal">"caps-lock-warning"</code> property</h3>
|
2911
|
+
<pre class="programlisting"> "caps-lock-warning" <span class="type">gboolean</span> : Read / Write</pre>
|
2912
|
+
<p>
|
2913
|
+
Whether password entries will show a warning when Caps Lock is on.
|
2914
|
+
</p>
|
2915
|
+
<p>
|
2916
|
+
Note that the warning is shown using a secondary icon, and thus
|
2917
|
+
does not work if you are using the secondary icon position for some
|
2918
|
+
other purpose.
|
2919
|
+
</p>
|
2920
|
+
<p>Default value: TRUE</p>
|
2921
|
+
<p class="since">Since 2.16</p>
|
2922
|
+
</div>
|
2923
|
+
<hr>
|
2924
|
+
<div class="refsect2">
|
2925
|
+
<a name="GtkEntry--completion"></a><h3>The <code class="literal">"completion"</code> property</h3>
|
2926
|
+
<pre class="programlisting"> "completion" <a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="type">GtkEntryCompletion</span></a>* : Read / Write</pre>
|
2927
|
+
<p>
|
2928
|
+
The auxiliary completion object to use with the entry.
|
2929
|
+
</p>
|
2930
|
+
<p class="since">Since 3.2</p>
|
2931
|
+
</div>
|
2932
|
+
<hr>
|
2933
|
+
<div class="refsect2">
|
2934
|
+
<a name="GtkEntry--cursor-position"></a><h3>The <code class="literal">"cursor-position"</code> property</h3>
|
2935
|
+
<pre class="programlisting"> "cursor-position" <span class="type">gint</span> : Read</pre>
|
2936
|
+
<p>The current position of the insertion cursor in chars.</p>
|
2937
|
+
<p>Allowed values: [0,65535]</p>
|
2938
|
+
<p>Default value: 0</p>
|
2939
|
+
</div>
|
2940
|
+
<hr>
|
2941
|
+
<div class="refsect2">
|
2942
|
+
<a name="GtkEntry--editable"></a><h3>The <code class="literal">"editable"</code> property</h3>
|
2943
|
+
<pre class="programlisting"> "editable" <span class="type">gboolean</span> : Read / Write</pre>
|
2944
|
+
<p>Whether the entry contents can be edited.</p>
|
2945
|
+
<p>Default value: TRUE</p>
|
2946
|
+
</div>
|
2947
|
+
<hr>
|
2948
|
+
<div class="refsect2">
|
2949
|
+
<a name="GtkEntry--has-frame"></a><h3>The <code class="literal">"has-frame"</code> property</h3>
|
2950
|
+
<pre class="programlisting"> "has-frame" <span class="type">gboolean</span> : Read / Write</pre>
|
2951
|
+
<p>FALSE removes outside bevel from entry.</p>
|
2952
|
+
<p>Default value: TRUE</p>
|
2953
|
+
</div>
|
2954
|
+
<hr>
|
2955
|
+
<div class="refsect2">
|
2956
|
+
<a name="GtkEntry--im-module"></a><h3>The <code class="literal">"im-module"</code> property</h3>
|
2957
|
+
<pre class="programlisting"> "im-module" <span class="type">gchar</span>* : Read / Write</pre>
|
2958
|
+
<p>
|
2959
|
+
Which IM (input method) module should be used for this entry.
|
2960
|
+
See <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>.
|
2961
|
+
</p>
|
2962
|
+
<p>
|
2963
|
+
Setting this to a non-<a href="/home/mclasen/gnome/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a> value overrides the
|
2964
|
+
system-wide IM module setting. See the GtkSettings
|
2965
|
+
<a class="link" href="GtkSettings.html#GtkSettings--gtk-im-module" title='The "gtk-im-module" property'><span class="type">"gtk-im-module"</span></a> property.
|
2966
|
+
</p>
|
2967
|
+
<p>Default value: NULL</p>
|
2968
|
+
<p class="since">Since 2.16</p>
|
2969
|
+
</div>
|
2970
|
+
<hr>
|
2971
|
+
<div class="refsect2">
|
2972
|
+
<a name="GtkEntry--inner-border"></a><h3>The <code class="literal">"inner-border"</code> property</h3>
|
2973
|
+
<pre class="programlisting"> "inner-border" <a class="link" href="GtkStyleContext.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read / Write</pre>
|
2974
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2975
|
+
<h3 class="title">Warning</h3>
|
2976
|
+
<p><code class="literal">GtkEntry:inner-border</code> has been deprecated since version 3.4 and should not be used in newly-written code. Use the standard border and padding CSS properties
|
2977
|
+
(through objects like <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a> and <a class="link" href="GtkCssProvider.html" title="GtkCssProvider"><span class="type">GtkCssProvider</span></a>); the value
|
2978
|
+
of this style property is ignored.</p>
|
2979
|
+
</div>
|
2980
|
+
<p>
|
2981
|
+
Sets the text area's border between the text and the frame.
|
2982
|
+
</p>
|
2983
|
+
<p class="since">Since 2.10</p>
|
2984
|
+
</div>
|
2985
|
+
<hr>
|
2986
|
+
<div class="refsect2">
|
2987
|
+
<a name="GtkEntry--input-hints"></a><h3>The <code class="literal">"input-hints"</code> property</h3>
|
2988
|
+
<pre class="programlisting"> "input-hints" <a class="link" href="GtkEntry.html#GtkInputHints" title="enum GtkInputHints"><span class="type">GtkInputHints</span></a> : Read / Write</pre>
|
2989
|
+
<p>
|
2990
|
+
Additional hints (beyond <a class="link" href="GtkEntry.html#GtkEntry--input-purpose" title='The "input-purpose" property'><span class="type">"input-purpose"</span></a>) that
|
2991
|
+
allow input methods to fine-tune their behaviour.
|
2992
|
+
</p>
|
2993
|
+
<p class="since">Since 3.6</p>
|
2994
|
+
</div>
|
2995
|
+
<hr>
|
2996
|
+
<div class="refsect2">
|
2997
|
+
<a name="GtkEntry--input-purpose"></a><h3>The <code class="literal">"input-purpose"</code> property</h3>
|
2998
|
+
<pre class="programlisting"> "input-purpose" <a class="link" href="GtkEntry.html#GtkInputPurpose" title="enum GtkInputPurpose"><span class="type">GtkInputPurpose</span></a> : Read / Write</pre>
|
2999
|
+
<p>
|
3000
|
+
The purpose of this text field.
|
3001
|
+
</p>
|
3002
|
+
<p>
|
3003
|
+
This property can be used by on-screen keyboards and other input
|
3004
|
+
methods to adjust their behaviour.
|
3005
|
+
</p>
|
3006
|
+
<p>
|
3007
|
+
Note that setting the purpose to <a class="link" href="GtkEntry.html#GTK-INPUT-PURPOSE-PASSWORD:CAPS"><code class="literal">GTK_INPUT_PURPOSE_PASSWORD</code></a> or
|
3008
|
+
<a class="link" href="GtkEntry.html#GTK-INPUT-PURPOSE-PIN:CAPS"><code class="literal">GTK_INPUT_PURPOSE_PIN</code></a> is independent from setting
|
3009
|
+
<a class="link" href="GtkEntry.html#GtkEntry--visibility" title='The "visibility" property'><span class="type">"visibility"</span></a>.
|
3010
|
+
</p>
|
3011
|
+
<p>Default value: GTK_INPUT_PURPOSE_FREE_FORM</p>
|
3012
|
+
<p class="since">Since 3.6</p>
|
3013
|
+
</div>
|
3014
|
+
<hr>
|
3015
|
+
<div class="refsect2">
|
3016
|
+
<a name="GtkEntry--invisible-char"></a><h3>The <code class="literal">"invisible-char"</code> property</h3>
|
3017
|
+
<pre class="programlisting"> "invisible-char" <span class="type">guint</span> : Read / Write</pre>
|
3018
|
+
<p>
|
3019
|
+
The invisible character is used when masking entry contents (in
|
3020
|
+
\"password mode\")"). When it is not explicitly set with the
|
3021
|
+
<a class="link" href="GtkEntry.html#GtkEntry--invisible-char" title='The "invisible-char" property'><span class="type">"invisible-char"</span></a> property, GTK+ determines the character
|
3022
|
+
to use from a list of possible candidates, depending on availability
|
3023
|
+
in the current font.
|
3024
|
+
</p>
|
3025
|
+
<p>
|
3026
|
+
This style property allows the theme to prepend a character
|
3027
|
+
to the list of candidates.
|
3028
|
+
</p>
|
3029
|
+
<p>Default value: '*'</p>
|
3030
|
+
<p class="since">Since 2.18</p>
|
3031
|
+
</div>
|
3032
|
+
<hr>
|
3033
|
+
<div class="refsect2">
|
3034
|
+
<a name="GtkEntry--invisible-char-set"></a><h3>The <code class="literal">"invisible-char-set"</code> property</h3>
|
3035
|
+
<pre class="programlisting"> "invisible-char-set" <span class="type">gboolean</span> : Read / Write</pre>
|
3036
|
+
<p>
|
3037
|
+
Whether the invisible char has been set for the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.
|
3038
|
+
</p>
|
3039
|
+
<p>Default value: FALSE</p>
|
3040
|
+
<p class="since">Since 2.16</p>
|
3041
|
+
</div>
|
3042
|
+
<hr>
|
3043
|
+
<div class="refsect2">
|
3044
|
+
<a name="GtkEntry--max-length"></a><h3>The <code class="literal">"max-length"</code> property</h3>
|
3045
|
+
<pre class="programlisting"> "max-length" <span class="type">gint</span> : Read / Write</pre>
|
3046
|
+
<p>Maximum number of characters for this entry. Zero if no maximum.</p>
|
3047
|
+
<p>Allowed values: [0,65535]</p>
|
3048
|
+
<p>Default value: 0</p>
|
3049
|
+
</div>
|
3050
|
+
<hr>
|
3051
|
+
<div class="refsect2">
|
3052
|
+
<a name="GtkEntry--overwrite-mode"></a><h3>The <code class="literal">"overwrite-mode"</code> property</h3>
|
3053
|
+
<pre class="programlisting"> "overwrite-mode" <span class="type">gboolean</span> : Read / Write</pre>
|
3054
|
+
<p>
|
3055
|
+
If text is overwritten when typing in the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.
|
3056
|
+
</p>
|
3057
|
+
<p>Default value: FALSE</p>
|
3058
|
+
<p class="since">Since 2.14</p>
|
3059
|
+
</div>
|
3060
|
+
<hr>
|
3061
|
+
<div class="refsect2">
|
3062
|
+
<a name="GtkEntry--placeholder-text"></a><h3>The <code class="literal">"placeholder-text"</code> property</h3>
|
3063
|
+
<pre class="programlisting"> "placeholder-text" <span class="type">gchar</span>* : Read / Write</pre>
|
3064
|
+
<p>
|
3065
|
+
The text that will be displayed in the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> when it is empty
|
3066
|
+
and unfocused.
|
3067
|
+
</p>
|
3068
|
+
<p>Default value: NULL</p>
|
3069
|
+
<p class="since">Since 3.2</p>
|
3070
|
+
</div>
|
3071
|
+
<hr>
|
3072
|
+
<div class="refsect2">
|
3073
|
+
<a name="GtkEntry--primary-icon-activatable"></a><h3>The <code class="literal">"primary-icon-activatable"</code> property</h3>
|
3074
|
+
<pre class="programlisting"> "primary-icon-activatable" <span class="type">gboolean</span> : Read / Write</pre>
|
3075
|
+
<p>
|
3076
|
+
Whether the primary icon is activatable.
|
3077
|
+
</p>
|
3078
|
+
<p>
|
3079
|
+
GTK+ emits the <a class="link" href="GtkEntry.html#GtkEntry-icon-press" title='The "icon-press" signal'><span class="type">"icon-press"</span></a> and <a class="link" href="GtkEntry.html#GtkEntry-icon-release" title='The "icon-release" signal'><span class="type">"icon-release"</span></a>
|
3080
|
+
signals only on sensitive, activatable icons.
|
3081
|
+
</p>
|
3082
|
+
<p>
|
3083
|
+
Sensitive, but non-activatable icons can be used for purely
|
3084
|
+
informational purposes.
|
3085
|
+
</p>
|
3086
|
+
<p>Default value: TRUE</p>
|
3087
|
+
<p class="since">Since 2.16</p>
|
3088
|
+
</div>
|
3089
|
+
<hr>
|
3090
|
+
<div class="refsect2">
|
3091
|
+
<a name="GtkEntry--primary-icon-gicon"></a><h3>The <code class="literal">"primary-icon-gicon"</code> property</h3>
|
3092
|
+
<pre class="programlisting"> "primary-icon-gicon" <span class="type">GIcon</span>* : Read / Write</pre>
|
3093
|
+
<p>
|
3094
|
+
The <span class="type">GIcon</span> to use for the primary icon for the entry.
|
3095
|
+
</p>
|
3096
|
+
<p class="since">Since 2.16</p>
|
3097
|
+
</div>
|
3098
|
+
<hr>
|
3099
|
+
<div class="refsect2">
|
3100
|
+
<a name="GtkEntry--primary-icon-name"></a><h3>The <code class="literal">"primary-icon-name"</code> property</h3>
|
3101
|
+
<pre class="programlisting"> "primary-icon-name" <span class="type">gchar</span>* : Read / Write</pre>
|
3102
|
+
<p>
|
3103
|
+
The icon name to use for the primary icon for the entry.
|
3104
|
+
</p>
|
3105
|
+
<p>Default value: NULL</p>
|
3106
|
+
<p class="since">Since 2.16</p>
|
3107
|
+
</div>
|
3108
|
+
<hr>
|
3109
|
+
<div class="refsect2">
|
3110
|
+
<a name="GtkEntry--primary-icon-pixbuf"></a><h3>The <code class="literal">"primary-icon-pixbuf"</code> property</h3>
|
3111
|
+
<pre class="programlisting"> "primary-icon-pixbuf" <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>* : Read / Write</pre>
|
3112
|
+
<p>
|
3113
|
+
A pixbuf to use as the primary icon for the entry.
|
3114
|
+
</p>
|
3115
|
+
<p class="since">Since 2.16</p>
|
3116
|
+
</div>
|
3117
|
+
<hr>
|
3118
|
+
<div class="refsect2">
|
3119
|
+
<a name="GtkEntry--primary-icon-sensitive"></a><h3>The <code class="literal">"primary-icon-sensitive"</code> property</h3>
|
3120
|
+
<pre class="programlisting"> "primary-icon-sensitive" <span class="type">gboolean</span> : Read / Write</pre>
|
3121
|
+
<p>
|
3122
|
+
Whether the primary icon is sensitive.
|
3123
|
+
</p>
|
3124
|
+
<p>
|
3125
|
+
An insensitive icon appears grayed out. GTK+ does not emit the
|
3126
|
+
<a class="link" href="GtkEntry.html#GtkEntry-icon-press" title='The "icon-press" signal'><span class="type">"icon-press"</span></a> and <a class="link" href="GtkEntry.html#GtkEntry-icon-release" title='The "icon-release" signal'><span class="type">"icon-release"</span></a> signals and
|
3127
|
+
does not allow DND from insensitive icons.
|
3128
|
+
</p>
|
3129
|
+
<p>
|
3130
|
+
An icon should be set insensitive if the action that would trigger
|
3131
|
+
when clicked is currently not available.
|
3132
|
+
</p>
|
3133
|
+
<p>Default value: TRUE</p>
|
3134
|
+
<p class="since">Since 2.16</p>
|
3135
|
+
</div>
|
3136
|
+
<hr>
|
3137
|
+
<div class="refsect2">
|
3138
|
+
<a name="GtkEntry--primary-icon-stock"></a><h3>The <code class="literal">"primary-icon-stock"</code> property</h3>
|
3139
|
+
<pre class="programlisting"> "primary-icon-stock" <span class="type">gchar</span>* : Read / Write</pre>
|
3140
|
+
<p>
|
3141
|
+
The stock id to use for the primary icon for the entry.
|
3142
|
+
</p>
|
3143
|
+
<p>Default value: NULL</p>
|
3144
|
+
<p class="since">Since 2.16</p>
|
3145
|
+
</div>
|
3146
|
+
<hr>
|
3147
|
+
<div class="refsect2">
|
3148
|
+
<a name="GtkEntry--primary-icon-storage-type"></a><h3>The <code class="literal">"primary-icon-storage-type"</code> property</h3>
|
3149
|
+
<pre class="programlisting"> "primary-icon-storage-type" <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="type">GtkImageType</span></a> : Read</pre>
|
3150
|
+
<p>
|
3151
|
+
The representation which is used for the primary icon of the entry.
|
3152
|
+
</p>
|
3153
|
+
<p>Default value: GTK_IMAGE_EMPTY</p>
|
3154
|
+
<p class="since">Since 2.16</p>
|
3155
|
+
</div>
|
3156
|
+
<hr>
|
3157
|
+
<div class="refsect2">
|
3158
|
+
<a name="GtkEntry--primary-icon-tooltip-markup"></a><h3>The <code class="literal">"primary-icon-tooltip-markup"</code> property</h3>
|
3159
|
+
<pre class="programlisting"> "primary-icon-tooltip-markup" <span class="type">gchar</span>* : Read / Write</pre>
|
3160
|
+
<p>
|
3161
|
+
The contents of the tooltip on the primary icon, which is marked up
|
3162
|
+
with the <GTKDOCLINK HREF="PangoMarkupFormat">Pango text markup
|
3163
|
+
language</GTKDOCLINK>.
|
3164
|
+
</p>
|
3165
|
+
<p>
|
3166
|
+
Also see <a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-markup" title="gtk_entry_set_icon_tooltip_markup ()"><code class="function">gtk_entry_set_icon_tooltip_markup()</code></a>.
|
3167
|
+
</p>
|
3168
|
+
<p>Default value: NULL</p>
|
3169
|
+
<p class="since">Since 2.16</p>
|
3170
|
+
</div>
|
3171
|
+
<hr>
|
3172
|
+
<div class="refsect2">
|
3173
|
+
<a name="GtkEntry--primary-icon-tooltip-text"></a><h3>The <code class="literal">"primary-icon-tooltip-text"</code> property</h3>
|
3174
|
+
<pre class="programlisting"> "primary-icon-tooltip-text" <span class="type">gchar</span>* : Read / Write</pre>
|
3175
|
+
<p>
|
3176
|
+
The contents of the tooltip on the primary icon.
|
3177
|
+
</p>
|
3178
|
+
<p>
|
3179
|
+
Also see <a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-text" title="gtk_entry_set_icon_tooltip_text ()"><code class="function">gtk_entry_set_icon_tooltip_text()</code></a>.
|
3180
|
+
</p>
|
3181
|
+
<p>Default value: NULL</p>
|
3182
|
+
<p class="since">Since 2.16</p>
|
3183
|
+
</div>
|
3184
|
+
<hr>
|
3185
|
+
<div class="refsect2">
|
3186
|
+
<a name="GtkEntry--progress-fraction"></a><h3>The <code class="literal">"progress-fraction"</code> property</h3>
|
3187
|
+
<pre class="programlisting"> "progress-fraction" <span class="type">gdouble</span> : Read / Write</pre>
|
3188
|
+
<p>
|
3189
|
+
The current fraction of the task that's been completed.
|
3190
|
+
</p>
|
3191
|
+
<p>Allowed values: [0,1]</p>
|
3192
|
+
<p>Default value: 0</p>
|
3193
|
+
<p class="since">Since 2.16</p>
|
3194
|
+
</div>
|
3195
|
+
<hr>
|
3196
|
+
<div class="refsect2">
|
3197
|
+
<a name="GtkEntry--progress-pulse-step"></a><h3>The <code class="literal">"progress-pulse-step"</code> property</h3>
|
3198
|
+
<pre class="programlisting"> "progress-pulse-step" <span class="type">gdouble</span> : Read / Write</pre>
|
3199
|
+
<p>
|
3200
|
+
The fraction of total entry width to move the progress
|
3201
|
+
bouncing block for each call to <a class="link" href="GtkEntry.html#gtk-entry-progress-pulse" title="gtk_entry_progress_pulse ()"><code class="function">gtk_entry_progress_pulse()</code></a>.
|
3202
|
+
</p>
|
3203
|
+
<p>Allowed values: [0,1]</p>
|
3204
|
+
<p>Default value: 0.1</p>
|
3205
|
+
<p class="since">Since 2.16</p>
|
3206
|
+
</div>
|
3207
|
+
<hr>
|
3208
|
+
<div class="refsect2">
|
3209
|
+
<a name="GtkEntry--scroll-offset"></a><h3>The <code class="literal">"scroll-offset"</code> property</h3>
|
3210
|
+
<pre class="programlisting"> "scroll-offset" <span class="type">gint</span> : Read</pre>
|
3211
|
+
<p>Number of pixels of the entry scrolled off the screen to the left.</p>
|
3212
|
+
<p>Allowed values: >= 0</p>
|
3213
|
+
<p>Default value: 0</p>
|
3214
|
+
</div>
|
3215
|
+
<hr>
|
3216
|
+
<div class="refsect2">
|
3217
|
+
<a name="GtkEntry--secondary-icon-activatable"></a><h3>The <code class="literal">"secondary-icon-activatable"</code> property</h3>
|
3218
|
+
<pre class="programlisting"> "secondary-icon-activatable" <span class="type">gboolean</span> : Read / Write</pre>
|
3219
|
+
<p>
|
3220
|
+
Whether the secondary icon is activatable.
|
3221
|
+
</p>
|
3222
|
+
<p>
|
3223
|
+
GTK+ emits the <a class="link" href="GtkEntry.html#GtkEntry-icon-press" title='The "icon-press" signal'><span class="type">"icon-press"</span></a> and <a class="link" href="GtkEntry.html#GtkEntry-icon-release" title='The "icon-release" signal'><span class="type">"icon-release"</span></a>
|
3224
|
+
signals only on sensitive, activatable icons.
|
3225
|
+
</p>
|
3226
|
+
<p>
|
3227
|
+
Sensitive, but non-activatable icons can be used for purely
|
3228
|
+
informational purposes.
|
3229
|
+
</p>
|
3230
|
+
<p>Default value: TRUE</p>
|
3231
|
+
<p class="since">Since 2.16</p>
|
3232
|
+
</div>
|
3233
|
+
<hr>
|
3234
|
+
<div class="refsect2">
|
3235
|
+
<a name="GtkEntry--secondary-icon-gicon"></a><h3>The <code class="literal">"secondary-icon-gicon"</code> property</h3>
|
3236
|
+
<pre class="programlisting"> "secondary-icon-gicon" <span class="type">GIcon</span>* : Read / Write</pre>
|
3237
|
+
<p>
|
3238
|
+
The <span class="type">GIcon</span> to use for the secondary icon for the entry.
|
3239
|
+
</p>
|
3240
|
+
<p class="since">Since 2.16</p>
|
3241
|
+
</div>
|
3242
|
+
<hr>
|
3243
|
+
<div class="refsect2">
|
3244
|
+
<a name="GtkEntry--secondary-icon-name"></a><h3>The <code class="literal">"secondary-icon-name"</code> property</h3>
|
3245
|
+
<pre class="programlisting"> "secondary-icon-name" <span class="type">gchar</span>* : Read / Write</pre>
|
3246
|
+
<p>
|
3247
|
+
The icon name to use for the secondary icon for the entry.
|
3248
|
+
</p>
|
3249
|
+
<p>Default value: NULL</p>
|
3250
|
+
<p class="since">Since 2.16</p>
|
3251
|
+
</div>
|
3252
|
+
<hr>
|
3253
|
+
<div class="refsect2">
|
3254
|
+
<a name="GtkEntry--secondary-icon-pixbuf"></a><h3>The <code class="literal">"secondary-icon-pixbuf"</code> property</h3>
|
3255
|
+
<pre class="programlisting"> "secondary-icon-pixbuf" <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>* : Read / Write</pre>
|
3256
|
+
<p>
|
3257
|
+
An pixbuf to use as the secondary icon for the entry.
|
3258
|
+
</p>
|
3259
|
+
<p class="since">Since 2.16</p>
|
3260
|
+
</div>
|
3261
|
+
<hr>
|
3262
|
+
<div class="refsect2">
|
3263
|
+
<a name="GtkEntry--secondary-icon-sensitive"></a><h3>The <code class="literal">"secondary-icon-sensitive"</code> property</h3>
|
3264
|
+
<pre class="programlisting"> "secondary-icon-sensitive" <span class="type">gboolean</span> : Read / Write</pre>
|
3265
|
+
<p>
|
3266
|
+
Whether the secondary icon is sensitive.
|
3267
|
+
</p>
|
3268
|
+
<p>
|
3269
|
+
An insensitive icon appears grayed out. GTK+ does not emit the
|
3270
|
+
<a class="link" href="GtkEntry.html#GtkEntry-icon-press" title='The "icon-press" signal'><span class="type">"icon-press"</span></a> and <a class="link" href="GtkEntry.html#GtkEntry-icon-release" title='The "icon-release" signal'><span class="type">"icon-release"</span></a> signals and
|
3271
|
+
does not allow DND from insensitive icons.
|
3272
|
+
</p>
|
3273
|
+
<p>
|
3274
|
+
An icon should be set insensitive if the action that would trigger
|
3275
|
+
when clicked is currently not available.
|
3276
|
+
</p>
|
3277
|
+
<p>Default value: TRUE</p>
|
3278
|
+
<p class="since">Since 2.16</p>
|
3279
|
+
</div>
|
3280
|
+
<hr>
|
3281
|
+
<div class="refsect2">
|
3282
|
+
<a name="GtkEntry--secondary-icon-stock"></a><h3>The <code class="literal">"secondary-icon-stock"</code> property</h3>
|
3283
|
+
<pre class="programlisting"> "secondary-icon-stock" <span class="type">gchar</span>* : Read / Write</pre>
|
3284
|
+
<p>
|
3285
|
+
The stock id to use for the secondary icon for the entry.
|
3286
|
+
</p>
|
3287
|
+
<p>Default value: NULL</p>
|
3288
|
+
<p class="since">Since 2.16</p>
|
3289
|
+
</div>
|
3290
|
+
<hr>
|
3291
|
+
<div class="refsect2">
|
3292
|
+
<a name="GtkEntry--secondary-icon-storage-type"></a><h3>The <code class="literal">"secondary-icon-storage-type"</code> property</h3>
|
3293
|
+
<pre class="programlisting"> "secondary-icon-storage-type" <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="type">GtkImageType</span></a> : Read</pre>
|
3294
|
+
<p>
|
3295
|
+
The representation which is used for the secondary icon of the entry.
|
3296
|
+
</p>
|
3297
|
+
<p>Default value: GTK_IMAGE_EMPTY</p>
|
3298
|
+
<p class="since">Since 2.16</p>
|
3299
|
+
</div>
|
3300
|
+
<hr>
|
3301
|
+
<div class="refsect2">
|
3302
|
+
<a name="GtkEntry--secondary-icon-tooltip-markup"></a><h3>The <code class="literal">"secondary-icon-tooltip-markup"</code> property</h3>
|
3303
|
+
<pre class="programlisting"> "secondary-icon-tooltip-markup" <span class="type">gchar</span>* : Read / Write</pre>
|
3304
|
+
<p>
|
3305
|
+
The contents of the tooltip on the secondary icon, which is marked up
|
3306
|
+
with the <GTKDOCLINK HREF="PangoMarkupFormat">Pango text markup
|
3307
|
+
language</GTKDOCLINK>.
|
3308
|
+
</p>
|
3309
|
+
<p>
|
3310
|
+
Also see <a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-markup" title="gtk_entry_set_icon_tooltip_markup ()"><code class="function">gtk_entry_set_icon_tooltip_markup()</code></a>.
|
3311
|
+
</p>
|
3312
|
+
<p>Default value: NULL</p>
|
3313
|
+
<p class="since">Since 2.16</p>
|
3314
|
+
</div>
|
3315
|
+
<hr>
|
3316
|
+
<div class="refsect2">
|
3317
|
+
<a name="GtkEntry--secondary-icon-tooltip-text"></a><h3>The <code class="literal">"secondary-icon-tooltip-text"</code> property</h3>
|
3318
|
+
<pre class="programlisting"> "secondary-icon-tooltip-text" <span class="type">gchar</span>* : Read / Write</pre>
|
3319
|
+
<p>
|
3320
|
+
The contents of the tooltip on the secondary icon.
|
3321
|
+
</p>
|
3322
|
+
<p>
|
3323
|
+
Also see <a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-text" title="gtk_entry_set_icon_tooltip_text ()"><code class="function">gtk_entry_set_icon_tooltip_text()</code></a>.
|
3324
|
+
</p>
|
3325
|
+
<p>Default value: NULL</p>
|
3326
|
+
<p class="since">Since 2.16</p>
|
3327
|
+
</div>
|
3328
|
+
<hr>
|
3329
|
+
<div class="refsect2">
|
3330
|
+
<a name="GtkEntry--selection-bound"></a><h3>The <code class="literal">"selection-bound"</code> property</h3>
|
3331
|
+
<pre class="programlisting"> "selection-bound" <span class="type">gint</span> : Read</pre>
|
3332
|
+
<p>The position of the opposite end of the selection from the cursor in chars.</p>
|
3333
|
+
<p>Allowed values: [0,65535]</p>
|
3334
|
+
<p>Default value: 0</p>
|
3335
|
+
</div>
|
3336
|
+
<hr>
|
3337
|
+
<div class="refsect2">
|
3338
|
+
<a name="GtkEntry--shadow-type"></a><h3>The <code class="literal">"shadow-type"</code> property</h3>
|
3339
|
+
<pre class="programlisting"> "shadow-type" <a class="link" href="gtk3-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> : Read / Write</pre>
|
3340
|
+
<p>
|
3341
|
+
Which kind of shadow to draw around the entry when
|
3342
|
+
<a class="link" href="GtkEntry.html#GtkEntry--has-frame" title='The "has-frame" property'><span class="type">"has-frame"</span></a> is set to <code class="literal">TRUE</code>.
|
3343
|
+
</p>
|
3344
|
+
<p>Default value: GTK_SHADOW_IN</p>
|
3345
|
+
<p class="since">Since 2.12</p>
|
3346
|
+
</div>
|
3347
|
+
<hr>
|
3348
|
+
<div class="refsect2">
|
3349
|
+
<a name="GtkEntry--text"></a><h3>The <code class="literal">"text"</code> property</h3>
|
3350
|
+
<pre class="programlisting"> "text" <span class="type">gchar</span>* : Read / Write</pre>
|
3351
|
+
<p>The contents of the entry.</p>
|
3352
|
+
<p>Default value: ""</p>
|
3353
|
+
</div>
|
3354
|
+
<hr>
|
3355
|
+
<div class="refsect2">
|
3356
|
+
<a name="GtkEntry--text-length"></a><h3>The <code class="literal">"text-length"</code> property</h3>
|
3357
|
+
<pre class="programlisting"> "text-length" <span class="type">guint</span> : Read</pre>
|
3358
|
+
<p>
|
3359
|
+
The length of the text in the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.
|
3360
|
+
</p>
|
3361
|
+
<p>Allowed values: <= 65535</p>
|
3362
|
+
<p>Default value: 0</p>
|
3363
|
+
<p class="since">Since 2.14</p>
|
3364
|
+
</div>
|
3365
|
+
<hr>
|
3366
|
+
<div class="refsect2">
|
3367
|
+
<a name="GtkEntry--truncate-multiline"></a><h3>The <code class="literal">"truncate-multiline"</code> property</h3>
|
3368
|
+
<pre class="programlisting"> "truncate-multiline" <span class="type">gboolean</span> : Read / Write</pre>
|
3369
|
+
<p>
|
3370
|
+
When <code class="literal">TRUE</code>, pasted multi-line text is truncated to the first line.
|
3371
|
+
</p>
|
3372
|
+
<p>Default value: FALSE</p>
|
3373
|
+
<p class="since">Since 2.10</p>
|
3374
|
+
</div>
|
3375
|
+
<hr>
|
3376
|
+
<div class="refsect2">
|
3377
|
+
<a name="GtkEntry--visibility"></a><h3>The <code class="literal">"visibility"</code> property</h3>
|
3378
|
+
<pre class="programlisting"> "visibility" <span class="type">gboolean</span> : Read / Write</pre>
|
3379
|
+
<p>FALSE displays the "invisible char" instead of the actual text (password mode).</p>
|
3380
|
+
<p>Default value: TRUE</p>
|
3381
|
+
</div>
|
3382
|
+
<hr>
|
3383
|
+
<div class="refsect2">
|
3384
|
+
<a name="GtkEntry--width-chars"></a><h3>The <code class="literal">"width-chars"</code> property</h3>
|
3385
|
+
<pre class="programlisting"> "width-chars" <span class="type">gint</span> : Read / Write</pre>
|
3386
|
+
<p>Number of characters to leave space for in the entry.</p>
|
3387
|
+
<p>Allowed values: >= G_MAXULONG</p>
|
3388
|
+
<p>Default value: -1</p>
|
3389
|
+
</div>
|
3390
|
+
<hr>
|
3391
|
+
<div class="refsect2">
|
3392
|
+
<a name="GtkEntry--xalign"></a><h3>The <code class="literal">"xalign"</code> property</h3>
|
3393
|
+
<pre class="programlisting"> "xalign" <span class="type">gfloat</span> : Read / Write</pre>
|
3394
|
+
<p>
|
3395
|
+
The horizontal alignment, from 0 (left) to 1 (right).
|
3396
|
+
Reversed for RTL layouts.
|
3397
|
+
</p>
|
3398
|
+
<p>Allowed values: [0,1]</p>
|
3399
|
+
<p>Default value: 0</p>
|
3400
|
+
<p class="since">Since 2.4</p>
|
3401
|
+
</div>
|
3402
|
+
</div>
|
3403
|
+
<div class="refsect1">
|
3404
|
+
<a name="GtkEntry.style-property-details"></a><h2>Style Property Details</h2>
|
3405
|
+
<div class="refsect2">
|
3406
|
+
<a name="GtkEntry--s-icon-prelight"></a><h3>The <code class="literal">"icon-prelight"</code> style property</h3>
|
3407
|
+
<pre class="programlisting"> "icon-prelight" <span class="type">gboolean</span> : Read</pre>
|
3408
|
+
<p>
|
3409
|
+
The prelight style property determines whether activatable
|
3410
|
+
icons prelight on mouseover.
|
3411
|
+
</p>
|
3412
|
+
<p>Default value: TRUE</p>
|
3413
|
+
<p class="since">Since 2.16</p>
|
3414
|
+
</div>
|
3415
|
+
<hr>
|
3416
|
+
<div class="refsect2">
|
3417
|
+
<a name="GtkEntry--s-inner-border"></a><h3>The <code class="literal">"inner-border"</code> style property</h3>
|
3418
|
+
<pre class="programlisting"> "inner-border" <a class="link" href="GtkStyleContext.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read</pre>
|
3419
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
3420
|
+
<h3 class="title">Warning</h3>
|
3421
|
+
<p><code class="literal">GtkEntry:inner-border</code> has been deprecated since version 3.4 and should not be used in newly-written code. Use the standard border and padding CSS properties
|
3422
|
+
(through objects like <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a> and <a class="link" href="GtkCssProvider.html" title="GtkCssProvider"><span class="type">GtkCssProvider</span></a>); the value
|
3423
|
+
of this style property is ignored.</p>
|
3424
|
+
</div>
|
3425
|
+
<p>
|
3426
|
+
Sets the text area's border between the text and the frame.
|
3427
|
+
</p>
|
3428
|
+
<p class="since">Since 2.10</p>
|
3429
|
+
</div>
|
3430
|
+
<hr>
|
3431
|
+
<div class="refsect2">
|
3432
|
+
<a name="GtkEntry--s-invisible-char"></a><h3>The <code class="literal">"invisible-char"</code> style property</h3>
|
3433
|
+
<pre class="programlisting"> "invisible-char" <span class="type">guint</span> : Read</pre>
|
3434
|
+
<p>
|
3435
|
+
The invisible character is used when masking entry contents (in
|
3436
|
+
\"password mode\")"). When it is not explicitly set with the
|
3437
|
+
<a class="link" href="GtkEntry.html#GtkEntry--invisible-char" title='The "invisible-char" property'><span class="type">"invisible-char"</span></a> property, GTK+ determines the character
|
3438
|
+
to use from a list of possible candidates, depending on availability
|
3439
|
+
in the current font.
|
3440
|
+
</p>
|
3441
|
+
<p>
|
3442
|
+
This style property allows the theme to prepend a character
|
3443
|
+
to the list of candidates.
|
3444
|
+
</p>
|
3445
|
+
<p>Default value: 0</p>
|
3446
|
+
<p class="since">Since 2.18</p>
|
3447
|
+
</div>
|
3448
|
+
<hr>
|
3449
|
+
<div class="refsect2">
|
3450
|
+
<a name="GtkEntry--s-progress-border"></a><h3>The <code class="literal">"progress-border"</code> style property</h3>
|
3451
|
+
<pre class="programlisting"> "progress-border" <a class="link" href="GtkStyleContext.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read</pre>
|
3452
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
3453
|
+
<h3 class="title">Warning</h3>
|
3454
|
+
<p><code class="literal">GtkEntry:progress-border</code> has been deprecated since version 3.4 and should not be used in newly-written code. Use the standard margin CSS property (through objects
|
3455
|
+
like <a class="link" href="GtkStyleContext.html" title="GtkStyleContext"><span class="type">GtkStyleContext</span></a> and <a class="link" href="GtkCssProvider.html" title="GtkCssProvider"><span class="type">GtkCssProvider</span></a>); the value of this style
|
3456
|
+
property is ignored.</p>
|
3457
|
+
</div>
|
3458
|
+
<p>
|
3459
|
+
The border around the progress bar in the entry.
|
3460
|
+
</p>
|
3461
|
+
<p class="since">Since 2.16</p>
|
3462
|
+
</div>
|
3463
|
+
</div>
|
3464
|
+
<div class="refsect1">
|
3465
|
+
<a name="GtkEntry.signal-details"></a><h2>Signal Details</h2>
|
3466
|
+
<div class="refsect2">
|
3467
|
+
<a name="GtkEntry-activate"></a><h3>The <code class="literal">"activate"</code> signal</h3>
|
3468
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry,
|
3469
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3470
|
+
<p>
|
3471
|
+
The ::activate signal is emitted when the user hits
|
3472
|
+
the Enter key.
|
3473
|
+
</p>
|
3474
|
+
<p>
|
3475
|
+
While this signal is used as a
|
3476
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>,
|
3477
|
+
it is also commonly used by applications to intercept
|
3478
|
+
activation of entries.
|
3479
|
+
</p>
|
3480
|
+
<p>
|
3481
|
+
The default bindings for this signal are all forms of the Enter key.
|
3482
|
+
</p>
|
3483
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3484
|
+
<colgroup>
|
3485
|
+
<col align="left" valign="top">
|
3486
|
+
<col>
|
3487
|
+
</colgroup>
|
3488
|
+
<tbody>
|
3489
|
+
<tr>
|
3490
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3491
|
+
<td>The entry on which the signal is emitted</td>
|
3492
|
+
</tr>
|
3493
|
+
<tr>
|
3494
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3495
|
+
<td>user data set when the signal handler was connected.</td>
|
3496
|
+
</tr>
|
3497
|
+
</tbody>
|
3498
|
+
</table></div>
|
3499
|
+
</div>
|
3500
|
+
<hr>
|
3501
|
+
<div class="refsect2">
|
3502
|
+
<a name="GtkEntry-backspace"></a><h3>The <code class="literal">"backspace"</code> signal</h3>
|
3503
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry,
|
3504
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3505
|
+
<p>
|
3506
|
+
The ::backspace signal is a
|
3507
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3508
|
+
which gets emitted when the user asks for it.
|
3509
|
+
</p>
|
3510
|
+
<p>
|
3511
|
+
The default bindings for this signal are
|
3512
|
+
Backspace and Shift-Backspace.
|
3513
|
+
</p>
|
3514
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3515
|
+
<colgroup>
|
3516
|
+
<col align="left" valign="top">
|
3517
|
+
<col>
|
3518
|
+
</colgroup>
|
3519
|
+
<tbody>
|
3520
|
+
<tr>
|
3521
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3522
|
+
<td>the object which received the signal</td>
|
3523
|
+
</tr>
|
3524
|
+
<tr>
|
3525
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3526
|
+
<td>user data set when the signal handler was connected.</td>
|
3527
|
+
</tr>
|
3528
|
+
</tbody>
|
3529
|
+
</table></div>
|
3530
|
+
</div>
|
3531
|
+
<hr>
|
3532
|
+
<div class="refsect2">
|
3533
|
+
<a name="GtkEntry-copy-clipboard"></a><h3>The <code class="literal">"copy-clipboard"</code> signal</h3>
|
3534
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry,
|
3535
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3536
|
+
<p>
|
3537
|
+
The ::copy-clipboard signal is a
|
3538
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3539
|
+
which gets emitted to copy the selection to the clipboard.
|
3540
|
+
</p>
|
3541
|
+
<p>
|
3542
|
+
The default bindings for this signal are
|
3543
|
+
Ctrl-c and Ctrl-Insert.
|
3544
|
+
</p>
|
3545
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3546
|
+
<colgroup>
|
3547
|
+
<col align="left" valign="top">
|
3548
|
+
<col>
|
3549
|
+
</colgroup>
|
3550
|
+
<tbody>
|
3551
|
+
<tr>
|
3552
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3553
|
+
<td>the object which received the signal</td>
|
3554
|
+
</tr>
|
3555
|
+
<tr>
|
3556
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3557
|
+
<td>user data set when the signal handler was connected.</td>
|
3558
|
+
</tr>
|
3559
|
+
</tbody>
|
3560
|
+
</table></div>
|
3561
|
+
</div>
|
3562
|
+
<hr>
|
3563
|
+
<div class="refsect2">
|
3564
|
+
<a name="GtkEntry-cut-clipboard"></a><h3>The <code class="literal">"cut-clipboard"</code> signal</h3>
|
3565
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry,
|
3566
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3567
|
+
<p>
|
3568
|
+
The ::cut-clipboard signal is a
|
3569
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3570
|
+
which gets emitted to cut the selection to the clipboard.
|
3571
|
+
</p>
|
3572
|
+
<p>
|
3573
|
+
The default bindings for this signal are
|
3574
|
+
Ctrl-x and Shift-Delete.
|
3575
|
+
</p>
|
3576
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3577
|
+
<colgroup>
|
3578
|
+
<col align="left" valign="top">
|
3579
|
+
<col>
|
3580
|
+
</colgroup>
|
3581
|
+
<tbody>
|
3582
|
+
<tr>
|
3583
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3584
|
+
<td>the object which received the signal</td>
|
3585
|
+
</tr>
|
3586
|
+
<tr>
|
3587
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3588
|
+
<td>user data set when the signal handler was connected.</td>
|
3589
|
+
</tr>
|
3590
|
+
</tbody>
|
3591
|
+
</table></div>
|
3592
|
+
</div>
|
3593
|
+
<hr>
|
3594
|
+
<div class="refsect2">
|
3595
|
+
<a name="GtkEntry-delete-from-cursor"></a><h3>The <code class="literal">"delete-from-cursor"</code> signal</h3>
|
3596
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry,
|
3597
|
+
<a class="link" href="gtk3-Standard-Enumerations.html#GtkDeleteType" title="enum GtkDeleteType"><span class="type">GtkDeleteType</span></a> type,
|
3598
|
+
<span class="type">gint</span> count,
|
3599
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3600
|
+
<p>
|
3601
|
+
The ::delete-from-cursor signal is a
|
3602
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3603
|
+
which gets emitted when the user initiates a text deletion.
|
3604
|
+
</p>
|
3605
|
+
<p>
|
3606
|
+
If the <em class="parameter"><code>type</code></em> is <a class="link" href="gtk3-Standard-Enumerations.html#GTK-DELETE-CHARS:CAPS"><code class="literal">GTK_DELETE_CHARS</code></a>, GTK+ deletes the selection
|
3607
|
+
if there is one, otherwise it deletes the requested number
|
3608
|
+
of characters.
|
3609
|
+
</p>
|
3610
|
+
<p>
|
3611
|
+
The default bindings for this signal are
|
3612
|
+
Delete for deleting a character and Ctrl-Delete for
|
3613
|
+
deleting a word.
|
3614
|
+
</p>
|
3615
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3616
|
+
<colgroup>
|
3617
|
+
<col align="left" valign="top">
|
3618
|
+
<col>
|
3619
|
+
</colgroup>
|
3620
|
+
<tbody>
|
3621
|
+
<tr>
|
3622
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3623
|
+
<td>the object which received the signal</td>
|
3624
|
+
</tr>
|
3625
|
+
<tr>
|
3626
|
+
<td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
|
3627
|
+
<td>the granularity of the deletion, as a <a class="link" href="gtk3-Standard-Enumerations.html#GtkDeleteType" title="enum GtkDeleteType"><span class="type">GtkDeleteType</span></a>
|
3628
|
+
</td>
|
3629
|
+
</tr>
|
3630
|
+
<tr>
|
3631
|
+
<td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
|
3632
|
+
<td>the number of <em class="parameter"><code>type</code></em> units to delete</td>
|
3633
|
+
</tr>
|
3634
|
+
<tr>
|
3635
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3636
|
+
<td>user data set when the signal handler was connected.</td>
|
3637
|
+
</tr>
|
3638
|
+
</tbody>
|
3639
|
+
</table></div>
|
3640
|
+
</div>
|
3641
|
+
<hr>
|
3642
|
+
<div class="refsect2">
|
3643
|
+
<a name="GtkEntry-icon-press"></a><h3>The <code class="literal">"icon-press"</code> signal</h3>
|
3644
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry,
|
3645
|
+
<a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos,
|
3646
|
+
<a href="../gdk3/gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
|
3647
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
3648
|
+
<p>
|
3649
|
+
The ::icon-press signal is emitted when an activatable icon
|
3650
|
+
is clicked.
|
3651
|
+
</p>
|
3652
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3653
|
+
<colgroup>
|
3654
|
+
<col align="left" valign="top">
|
3655
|
+
<col>
|
3656
|
+
</colgroup>
|
3657
|
+
<tbody>
|
3658
|
+
<tr>
|
3659
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3660
|
+
<td>The entry on which the signal is emitted</td>
|
3661
|
+
</tr>
|
3662
|
+
<tr>
|
3663
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
3664
|
+
<td>The position of the clicked icon</td>
|
3665
|
+
</tr>
|
3666
|
+
<tr>
|
3667
|
+
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
3668
|
+
<td>the button press event. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> Gdk.EventButton]</span>
|
3669
|
+
</td>
|
3670
|
+
</tr>
|
3671
|
+
<tr>
|
3672
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3673
|
+
<td>user data set when the signal handler was connected.</td>
|
3674
|
+
</tr>
|
3675
|
+
</tbody>
|
3676
|
+
</table></div>
|
3677
|
+
<p class="since">Since 2.16</p>
|
3678
|
+
</div>
|
3679
|
+
<hr>
|
3680
|
+
<div class="refsect2">
|
3681
|
+
<a name="GtkEntry-icon-release"></a><h3>The <code class="literal">"icon-release"</code> signal</h3>
|
3682
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry,
|
3683
|
+
<a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos,
|
3684
|
+
<a href="../gdk3/gdk3-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
|
3685
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
3686
|
+
<p>
|
3687
|
+
The ::icon-release signal is emitted on the button release from a
|
3688
|
+
mouse click over an activatable icon.
|
3689
|
+
</p>
|
3690
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3691
|
+
<colgroup>
|
3692
|
+
<col align="left" valign="top">
|
3693
|
+
<col>
|
3694
|
+
</colgroup>
|
3695
|
+
<tbody>
|
3696
|
+
<tr>
|
3697
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3698
|
+
<td>The entry on which the signal is emitted</td>
|
3699
|
+
</tr>
|
3700
|
+
<tr>
|
3701
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
3702
|
+
<td>The position of the clicked icon</td>
|
3703
|
+
</tr>
|
3704
|
+
<tr>
|
3705
|
+
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
3706
|
+
<td>the button release event. <span class="annotation">[<acronym title="Override the parsed C type with given type."><span class="acronym">type</span></acronym> Gdk.EventButton]</span>
|
3707
|
+
</td>
|
3708
|
+
</tr>
|
3709
|
+
<tr>
|
3710
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3711
|
+
<td>user data set when the signal handler was connected.</td>
|
3712
|
+
</tr>
|
3713
|
+
</tbody>
|
3714
|
+
</table></div>
|
3715
|
+
<p class="since">Since 2.16</p>
|
3716
|
+
</div>
|
3717
|
+
<hr>
|
3718
|
+
<div class="refsect2">
|
3719
|
+
<a name="GtkEntry-insert-at-cursor"></a><h3>The <code class="literal">"insert-at-cursor"</code> signal</h3>
|
3720
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry,
|
3721
|
+
<span class="type">gchar</span> *string,
|
3722
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3723
|
+
<p>
|
3724
|
+
The ::insert-at-cursor signal is a
|
3725
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3726
|
+
which gets emitted when the user initiates the insertion of a
|
3727
|
+
fixed string at the cursor.
|
3728
|
+
</p>
|
3729
|
+
<p>
|
3730
|
+
This signal has no default bindings.
|
3731
|
+
</p>
|
3732
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3733
|
+
<colgroup>
|
3734
|
+
<col align="left" valign="top">
|
3735
|
+
<col>
|
3736
|
+
</colgroup>
|
3737
|
+
<tbody>
|
3738
|
+
<tr>
|
3739
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3740
|
+
<td>the object which received the signal</td>
|
3741
|
+
</tr>
|
3742
|
+
<tr>
|
3743
|
+
<td><p><span class="term"><em class="parameter"><code>string</code></em> :</span></p></td>
|
3744
|
+
<td>the string to insert</td>
|
3745
|
+
</tr>
|
3746
|
+
<tr>
|
3747
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3748
|
+
<td>user data set when the signal handler was connected.</td>
|
3749
|
+
</tr>
|
3750
|
+
</tbody>
|
3751
|
+
</table></div>
|
3752
|
+
</div>
|
3753
|
+
<hr>
|
3754
|
+
<div class="refsect2">
|
3755
|
+
<a name="GtkEntry-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
|
3756
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry,
|
3757
|
+
<a class="link" href="gtk3-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
|
3758
|
+
<span class="type">gint</span> count,
|
3759
|
+
<span class="type">gboolean</span> extend_selection,
|
3760
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3761
|
+
<p>
|
3762
|
+
The ::move-cursor signal is a
|
3763
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3764
|
+
which gets emitted when the user initiates a cursor movement.
|
3765
|
+
If the cursor is not visible in <em class="parameter"><code>entry</code></em>, this signal causes
|
3766
|
+
the viewport to be moved instead.
|
3767
|
+
</p>
|
3768
|
+
<p>
|
3769
|
+
Applications should not connect to it, but may emit it with
|
3770
|
+
<code class="function">g_signal_emit_by_name()</code> if they need to control the cursor
|
3771
|
+
programmatically.
|
3772
|
+
</p>
|
3773
|
+
<p>
|
3774
|
+
The default bindings for this signal come in two variants,
|
3775
|
+
the variant with the Shift modifier extends the selection,
|
3776
|
+
the variant without the Shift modifer does not.
|
3777
|
+
There are too many key combinations to list them all here.
|
3778
|
+
</p>
|
3779
|
+
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
3780
|
+
<li class="listitem">Arrow keys move by individual characters/lines</li>
|
3781
|
+
<li class="listitem">Ctrl-arrow key combinations move by words/paragraphs</li>
|
3782
|
+
<li class="listitem">Home/End keys move to the ends of the buffer</li>
|
3783
|
+
</ul></div>
|
3784
|
+
<p>
|
3785
|
+
</p>
|
3786
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3787
|
+
<colgroup>
|
3788
|
+
<col align="left" valign="top">
|
3789
|
+
<col>
|
3790
|
+
</colgroup>
|
3791
|
+
<tbody>
|
3792
|
+
<tr>
|
3793
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3794
|
+
<td>the object which received the signal</td>
|
3795
|
+
</tr>
|
3796
|
+
<tr>
|
3797
|
+
<td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
|
3798
|
+
<td>the granularity of the move, as a <a class="link" href="gtk3-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a>
|
3799
|
+
</td>
|
3800
|
+
</tr>
|
3801
|
+
<tr>
|
3802
|
+
<td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
|
3803
|
+
<td>the number of <em class="parameter"><code>step</code></em> units to move</td>
|
3804
|
+
</tr>
|
3805
|
+
<tr>
|
3806
|
+
<td><p><span class="term"><em class="parameter"><code>extend_selection</code></em> :</span></p></td>
|
3807
|
+
<td>
|
3808
|
+
<code class="literal">TRUE</code> if the move should extend the selection</td>
|
3809
|
+
</tr>
|
3810
|
+
<tr>
|
3811
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3812
|
+
<td>user data set when the signal handler was connected.</td>
|
3813
|
+
</tr>
|
3814
|
+
</tbody>
|
3815
|
+
</table></div>
|
3816
|
+
</div>
|
3817
|
+
<hr>
|
3818
|
+
<div class="refsect2">
|
3819
|
+
<a name="GtkEntry-paste-clipboard"></a><h3>The <code class="literal">"paste-clipboard"</code> signal</h3>
|
3820
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry,
|
3821
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3822
|
+
<p>
|
3823
|
+
The ::paste-clipboard signal is a
|
3824
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3825
|
+
which gets emitted to paste the contents of the clipboard
|
3826
|
+
into the text view.
|
3827
|
+
</p>
|
3828
|
+
<p>
|
3829
|
+
The default bindings for this signal are
|
3830
|
+
Ctrl-v and Shift-Insert.
|
3831
|
+
</p>
|
3832
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3833
|
+
<colgroup>
|
3834
|
+
<col align="left" valign="top">
|
3835
|
+
<col>
|
3836
|
+
</colgroup>
|
3837
|
+
<tbody>
|
3838
|
+
<tr>
|
3839
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3840
|
+
<td>the object which received the signal</td>
|
3841
|
+
</tr>
|
3842
|
+
<tr>
|
3843
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3844
|
+
<td>user data set when the signal handler was connected.</td>
|
3845
|
+
</tr>
|
3846
|
+
</tbody>
|
3847
|
+
</table></div>
|
3848
|
+
</div>
|
3849
|
+
<hr>
|
3850
|
+
<div class="refsect2">
|
3851
|
+
<a name="GtkEntry-populate-popup"></a><h3>The <code class="literal">"populate-popup"</code> signal</h3>
|
3852
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry,
|
3853
|
+
<a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu,
|
3854
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Run Last</code></pre>
|
3855
|
+
<p>
|
3856
|
+
The ::populate-popup signal gets emitted before showing the
|
3857
|
+
context menu of the entry.
|
3858
|
+
</p>
|
3859
|
+
<p>
|
3860
|
+
If you need to add items to the context menu, connect
|
3861
|
+
to this signal and append your menuitems to the <em class="parameter"><code>menu</code></em>.
|
3862
|
+
</p>
|
3863
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3864
|
+
<colgroup>
|
3865
|
+
<col align="left" valign="top">
|
3866
|
+
<col>
|
3867
|
+
</colgroup>
|
3868
|
+
<tbody>
|
3869
|
+
<tr>
|
3870
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3871
|
+
<td>The entry on which the signal is emitted</td>
|
3872
|
+
</tr>
|
3873
|
+
<tr>
|
3874
|
+
<td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
|
3875
|
+
<td>the menu that is being populated</td>
|
3876
|
+
</tr>
|
3877
|
+
<tr>
|
3878
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3879
|
+
<td>user data set when the signal handler was connected.</td>
|
3880
|
+
</tr>
|
3881
|
+
</tbody>
|
3882
|
+
</table></div>
|
3883
|
+
</div>
|
3884
|
+
<hr>
|
3885
|
+
<div class="refsect2">
|
3886
|
+
<a name="GtkEntry-preedit-changed"></a><h3>The <code class="literal">"preedit-changed"</code> signal</h3>
|
3887
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry,
|
3888
|
+
<span class="type">gchar</span> *preedit,
|
3889
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3890
|
+
<p>
|
3891
|
+
If an input method is used, the typed text will not immediately
|
3892
|
+
be committed to the buffer. So if you are interested in the text,
|
3893
|
+
connect to this signal.
|
3894
|
+
</p>
|
3895
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3896
|
+
<colgroup>
|
3897
|
+
<col align="left" valign="top">
|
3898
|
+
<col>
|
3899
|
+
</colgroup>
|
3900
|
+
<tbody>
|
3901
|
+
<tr>
|
3902
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3903
|
+
<td>the object which received the signal</td>
|
3904
|
+
</tr>
|
3905
|
+
<tr>
|
3906
|
+
<td><p><span class="term"><em class="parameter"><code>preedit</code></em> :</span></p></td>
|
3907
|
+
<td>the current preedit string</td>
|
3908
|
+
</tr>
|
3909
|
+
<tr>
|
3910
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3911
|
+
<td>user data set when the signal handler was connected.</td>
|
3912
|
+
</tr>
|
3913
|
+
</tbody>
|
3914
|
+
</table></div>
|
3915
|
+
<p class="since">Since 2.20</p>
|
3916
|
+
</div>
|
3917
|
+
<hr>
|
3918
|
+
<div class="refsect2">
|
3919
|
+
<a name="GtkEntry-toggle-overwrite"></a><h3>The <code class="literal">"toggle-overwrite"</code> signal</h3>
|
3920
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry,
|
3921
|
+
<span class="type">gpointer</span> user_data) : <code class="literal">Action</code></pre>
|
3922
|
+
<p>
|
3923
|
+
The ::toggle-overwrite signal is a
|
3924
|
+
<a class="link" href="gtk3-Bindings.html#keybinding-signals">keybinding signal</a>
|
3925
|
+
which gets emitted to toggle the overwrite mode of the entry.
|
3926
|
+
</p>
|
3927
|
+
<p>
|
3928
|
+
The default bindings for this signal is Insert.
|
3929
|
+
</p>
|
3930
|
+
<div class="variablelist"><table border="0" class="variablelist">
|
3931
|
+
<colgroup>
|
3932
|
+
<col align="left" valign="top">
|
3933
|
+
<col>
|
3934
|
+
</colgroup>
|
3935
|
+
<tbody>
|
3936
|
+
<tr>
|
3937
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3938
|
+
<td>the object which received the signal</td>
|
3939
|
+
</tr>
|
3940
|
+
<tr>
|
3941
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3942
|
+
<td>user data set when the signal handler was connected.</td>
|
3943
|
+
</tr>
|
3944
|
+
</tbody>
|
3945
|
+
</table></div>
|
3946
|
+
</div>
|
3947
|
+
</div>
|
3948
|
+
<div class="refsect1">
|
3949
|
+
<a name="GtkEntry.see-also"></a><h2>See Also</h2>
|
3950
|
+
<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>, <a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="type">GtkEntryCompletion</span></a>
|
3951
|
+
</div>
|
3952
|
+
</div>
|
3953
|
+
<div class="footer">
|
3954
|
+
<hr>
|
3955
|
+
Generated by GTK-Doc V1.18.1</div>
|
3956
|
+
</body>
|
3957
|
+
</html>
|