gtk3 1.2.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +32 -0
- data/ext/gtk3/conversions.c +34 -0
- data/ext/gtk3/depend +11 -0
- data/ext/gtk3/extconf.rb +108 -0
- data/ext/gtk3/gtk3.def +10 -0
- data/ext/gtk3/init.c +38 -0
- data/ext/gtk3/rbgdkdisplay.c +39 -0
- data/ext/gtk3/rbgdkdragcontext.c +108 -0
- data/ext/gtk3/rbgdkevent.c +38 -0
- data/ext/gtk3/rbgdkscreen.c +61 -0
- data/ext/gtk3/rbgtk.c +625 -0
- data/ext/gtk3/rbgtk3.h +57 -0
- data/ext/gtk3/rbgtk3conversions.h +347 -0
- data/ext/gtk3/rbgtk3private.h +282 -0
- data/ext/gtk3/rbgtk3util.c +67 -0
- data/ext/gtk3/rbgtk3util.h +32 -0
- data/ext/gtk3/rbgtkaboutdialog.c +117 -0
- data/ext/gtk3/rbgtkaccelerator.c +78 -0
- data/ext/gtk3/rbgtkaccelgroup.c +199 -0
- data/ext/gtk3/rbgtkaccelgroupentry.c +93 -0
- data/ext/gtk3/rbgtkaccelkey.c +119 -0
- data/ext/gtk3/rbgtkaccellabel.c +55 -0
- data/ext/gtk3/rbgtkaccelmap.c +135 -0
- data/ext/gtk3/rbgtkaccessible.c +56 -0
- data/ext/gtk3/rbgtkaction.c +205 -0
- data/ext/gtk3/rbgtkactiongroup.c +466 -0
- data/ext/gtk3/rbgtkactivatable.c +30 -0
- data/ext/gtk3/rbgtkadjustment.c +98 -0
- data/ext/gtk3/rbgtkalignment.c +75 -0
- data/ext/gtk3/rbgtkallocation.c +166 -0
- data/ext/gtk3/rbgtkappchooser.c +47 -0
- data/ext/gtk3/rbgtkappchooserbutton.c +70 -0
- data/ext/gtk3/rbgtkappchooserdialog.c +68 -0
- data/ext/gtk3/rbgtkappchooserwidget.c +40 -0
- data/ext/gtk3/rbgtkapplication.c +69 -0
- data/ext/gtk3/rbgtkarrow.c +56 -0
- data/ext/gtk3/rbgtkaspectframe.c +56 -0
- data/ext/gtk3/rbgtkassistant.c +218 -0
- data/ext/gtk3/rbgtkbin.c +42 -0
- data/ext/gtk3/rbgtkbindingset.c +164 -0
- data/ext/gtk3/rbgtkborder.c +119 -0
- data/ext/gtk3/rbgtkbox.c +146 -0
- data/ext/gtk3/rbgtkbuildable.c +96 -0
- data/ext/gtk3/rbgtkbuilder.c +166 -0
- data/ext/gtk3/rbgtkbutton.c +93 -0
- data/ext/gtk3/rbgtkbuttonbox.c +87 -0
- data/ext/gtk3/rbgtkcalendar.c +118 -0
- data/ext/gtk3/rbgtkcelleditable.c +57 -0
- data/ext/gtk3/rbgtkcelllayout.c +144 -0
- data/ext/gtk3/rbgtkcellrenderer.c +116 -0
- data/ext/gtk3/rbgtkcellrendereraccel.c +41 -0
- data/ext/gtk3/rbgtkcellrenderercombo.c +38 -0
- data/ext/gtk3/rbgtkcellrendererpixbuf.c +41 -0
- data/ext/gtk3/rbgtkcellrendererprogress.c +38 -0
- data/ext/gtk3/rbgtkcellrendererspin.c +39 -0
- data/ext/gtk3/rbgtkcellrendererspinner.c +38 -0
- data/ext/gtk3/rbgtkcellrenderertext.c +48 -0
- data/ext/gtk3/rbgtkcellrenderertoggle.c +39 -0
- data/ext/gtk3/rbgtkcellview.c +109 -0
- data/ext/gtk3/rbgtkcheckbutton.c +64 -0
- data/ext/gtk3/rbgtkcheckmenuitem.c +64 -0
- data/ext/gtk3/rbgtkclipboard.c +389 -0
- data/ext/gtk3/rbgtkcolorbutton.c +49 -0
- data/ext/gtk3/rbgtkcolorselection.c +219 -0
- data/ext/gtk3/rbgtkcolorselectiondialog.c +56 -0
- data/ext/gtk3/rbgtkcombobox.c +147 -0
- data/ext/gtk3/rbgtkcomboboxtext.c +138 -0
- data/ext/gtk3/rbgtkconst.c +79 -0
- data/ext/gtk3/rbgtkcontainer.c +784 -0
- data/ext/gtk3/rbgtkcssprovider.c +110 -0
- data/ext/gtk3/rbgtkdialog.c +186 -0
- data/ext/gtk3/rbgtkdrag.c +93 -0
- data/ext/gtk3/rbgtkdrawingarea.c +42 -0
- data/ext/gtk3/rbgtkeditable.c +149 -0
- data/ext/gtk3/rbgtkentry.c +198 -0
- data/ext/gtk3/rbgtkentrybuffer.c +87 -0
- data/ext/gtk3/rbgtkentrycompletion.c +122 -0
- data/ext/gtk3/rbgtkeventbox.c +42 -0
- data/ext/gtk3/rbgtkexpander.c +49 -0
- data/ext/gtk3/rbgtkfilechooser.c +384 -0
- data/ext/gtk3/rbgtkfilechooserbutton.c +50 -0
- data/ext/gtk3/rbgtkfilechooserdialog.c +62 -0
- data/ext/gtk3/rbgtkfilechooserwidget.c +40 -0
- data/ext/gtk3/rbgtkfilefilter.c +128 -0
- data/ext/gtk3/rbgtkfilesystemerror.c +48 -0
- data/ext/gtk3/rbgtkfixed.c +61 -0
- data/ext/gtk3/rbgtkfontbutton.c +49 -0
- data/ext/gtk3/rbgtkfontchooser.c +78 -0
- data/ext/gtk3/rbgtkfontchooserdialog.c +56 -0
- data/ext/gtk3/rbgtkfontchooserwidget.c +45 -0
- data/ext/gtk3/rbgtkframe.c +69 -0
- data/ext/gtk3/rbgtkgrid.c +105 -0
- data/ext/gtk3/rbgtkhandlebox.c +45 -0
- data/ext/gtk3/rbgtkhsv.c +102 -0
- data/ext/gtk3/rbgtkiconfactory.c +85 -0
- data/ext/gtk3/rbgtkiconinfo.c +115 -0
- data/ext/gtk3/rbgtkiconset.c +84 -0
- data/ext/gtk3/rbgtkiconsize.c +91 -0
- data/ext/gtk3/rbgtkiconsource.c +184 -0
- data/ext/gtk3/rbgtkicontheme.c +268 -0
- data/ext/gtk3/rbgtkiconview.c +270 -0
- data/ext/gtk3/rbgtkimage.c +96 -0
- data/ext/gtk3/rbgtkimagemenuitem.c +67 -0
- data/ext/gtk3/rbgtkimcontext.c +133 -0
- data/ext/gtk3/rbgtkimcontextsimple.c +69 -0
- data/ext/gtk3/rbgtkimmulticontext.c +48 -0
- data/ext/gtk3/rbgtkinfobar.c +121 -0
- data/ext/gtk3/rbgtkinvisible.c +49 -0
- data/ext/gtk3/rbgtklabel.c +139 -0
- data/ext/gtk3/rbgtklayout.c +93 -0
- data/ext/gtk3/rbgtklinkbutton.c +55 -0
- data/ext/gtk3/rbgtkliststore.c +408 -0
- data/ext/gtk3/rbgtklockbutton.c +50 -0
- data/ext/gtk3/rbgtkmenu.c +168 -0
- data/ext/gtk3/rbgtkmenubar.c +43 -0
- data/ext/gtk3/rbgtkmenuitem.c +95 -0
- data/ext/gtk3/rbgtkmenushell.c +106 -0
- data/ext/gtk3/rbgtkmenutoolbutton.c +81 -0
- data/ext/gtk3/rbgtkmessagedialog.c +74 -0
- data/ext/gtk3/rbgtkmisc.c +70 -0
- data/ext/gtk3/rbgtknotebook.c +383 -0
- data/ext/gtk3/rbgtknumerableicon.c +50 -0
- data/ext/gtk3/rbgtkorientable.c +27 -0
- data/ext/gtk3/rbgtkoverlay.c +53 -0
- data/ext/gtk3/rbgtkpagesetup.c +195 -0
- data/ext/gtk3/rbgtkpagesetupunixdialog.c +94 -0
- data/ext/gtk3/rbgtkpaned.c +114 -0
- data/ext/gtk3/rbgtkpapersize.c +179 -0
- data/ext/gtk3/rbgtkplug.c +85 -0
- data/ext/gtk3/rbgtkprintcontext.c +125 -0
- data/ext/gtk3/rbgtkprinter.c +155 -0
- data/ext/gtk3/rbgtkprintjob.c +148 -0
- data/ext/gtk3/rbgtkprintoperation.c +149 -0
- data/ext/gtk3/rbgtkprintoperationpreview.c +59 -0
- data/ext/gtk3/rbgtkprintsettings.c +807 -0
- data/ext/gtk3/rbgtkprintunixdialog.c +90 -0
- data/ext/gtk3/rbgtkprogressbar.c +72 -0
- data/ext/gtk3/rbgtkradioaction.c +122 -0
- data/ext/gtk3/rbgtkradiobutton.c +89 -0
- data/ext/gtk3/rbgtkradiomenuitem.c +147 -0
- data/ext/gtk3/rbgtkradiotoolbutton.c +131 -0
- data/ext/gtk3/rbgtkrange.c +68 -0
- data/ext/gtk3/rbgtkrecentaction.c +64 -0
- data/ext/gtk3/rbgtkrecentchooser.c +198 -0
- data/ext/gtk3/rbgtkrecentchooserdialog.c +66 -0
- data/ext/gtk3/rbgtkrecentchoosermenu.c +50 -0
- data/ext/gtk3/rbgtkrecentchooserwidget.c +48 -0
- data/ext/gtk3/rbgtkrecentdata.c +187 -0
- data/ext/gtk3/rbgtkrecentfilter.c +169 -0
- data/ext/gtk3/rbgtkrecentfilterinfo.c +200 -0
- data/ext/gtk3/rbgtkrecentinfo.c +213 -0
- data/ext/gtk3/rbgtkrecentmanager.c +134 -0
- data/ext/gtk3/rbgtkscale.c +97 -0
- data/ext/gtk3/rbgtkscalebutton.c +84 -0
- data/ext/gtk3/rbgtkscrollable.c +31 -0
- data/ext/gtk3/rbgtkscrollbar.c +52 -0
- data/ext/gtk3/rbgtkscrolledwindow.c +122 -0
- data/ext/gtk3/rbgtkselection.c +168 -0
- data/ext/gtk3/rbgtkselectiondata.c +282 -0
- data/ext/gtk3/rbgtkseparator.c +44 -0
- data/ext/gtk3/rbgtkseparatormenuitem.c +39 -0
- data/ext/gtk3/rbgtkseparatortoolitem.c +38 -0
- data/ext/gtk3/rbgtksettings.c +229 -0
- data/ext/gtk3/rbgtksizegroup.c +66 -0
- data/ext/gtk3/rbgtksocket.c +82 -0
- data/ext/gtk3/rbgtkspinbutton.c +132 -0
- data/ext/gtk3/rbgtkspinner.c +55 -0
- data/ext/gtk3/rbgtkstatusbar.c +77 -0
- data/ext/gtk3/rbgtkstatusicon.c +122 -0
- data/ext/gtk3/rbgtkstock.c +213 -0
- data/ext/gtk3/rbgtkstylecontext.c +411 -0
- data/ext/gtk3/rbgtkstyleproperties.c +119 -0
- data/ext/gtk3/rbgtkstyleprovider.c +68 -0
- data/ext/gtk3/rbgtkswitch.c +40 -0
- data/ext/gtk3/rbgtktable.c +190 -0
- data/ext/gtk3/rbgtktargetlist.c +125 -0
- data/ext/gtk3/rbgtktearoffmenuitem.c +41 -0
- data/ext/gtk3/rbgtktextappearance.c +236 -0
- data/ext/gtk3/rbgtktextattributes.c +326 -0
- data/ext/gtk3/rbgtktextbuffer.c +899 -0
- data/ext/gtk3/rbgtktextchildanchor.c +56 -0
- data/ext/gtk3/rbgtktextiter.c +732 -0
- data/ext/gtk3/rbgtktextmark.c +71 -0
- data/ext/gtk3/rbgtktexttag.c +68 -0
- data/ext/gtk3/rbgtktexttagtable.c +96 -0
- data/ext/gtk3/rbgtktextview.c +336 -0
- data/ext/gtk3/rbgtkthemingengine.c +257 -0
- data/ext/gtk3/rbgtktoggleaction.c +61 -0
- data/ext/gtk3/rbgtktogglebutton.c +87 -0
- data/ext/gtk3/rbgtktoggletoolbutton.c +61 -0
- data/ext/gtk3/rbgtktoolbar.c +118 -0
- data/ext/gtk3/rbgtktoolbutton.c +66 -0
- data/ext/gtk3/rbgtktoolitem.c +200 -0
- data/ext/gtk3/rbgtktoolitemgroup.c +70 -0
- data/ext/gtk3/rbgtktoolshell.c +96 -0
- data/ext/gtk3/rbgtktooltip.c +100 -0
- data/ext/gtk3/rbgtktreedragdest.c +28 -0
- data/ext/gtk3/rbgtktreedragsource.c +28 -0
- data/ext/gtk3/rbgtktreeiter.c +258 -0
- data/ext/gtk3/rbgtktreemodel.c +236 -0
- data/ext/gtk3/rbgtktreemodelfilter.c +197 -0
- data/ext/gtk3/rbgtktreemodelsort.c +111 -0
- data/ext/gtk3/rbgtktreepath.c +191 -0
- data/ext/gtk3/rbgtktreerowreference.c +140 -0
- data/ext/gtk3/rbgtktreeselection.c +205 -0
- data/ext/gtk3/rbgtktreesortable.c +122 -0
- data/ext/gtk3/rbgtktreestore.c +330 -0
- data/ext/gtk3/rbgtktreeview.c +715 -0
- data/ext/gtk3/rbgtktreeviewcolumn.c +256 -0
- data/ext/gtk3/rbgtkuimanager.c +189 -0
- data/ext/gtk3/rbgtkviewport.c +44 -0
- data/ext/gtk3/rbgtkvolumebutton.c +41 -0
- data/ext/gtk3/rbgtkwidget.c +1564 -0
- data/ext/gtk3/rbgtkwidgetpath.c +229 -0
- data/ext/gtk3/rbgtkwindow.c +557 -0
- data/ext/gtk3/rbgtkwindowgroup.c +80 -0
- data/extconf.rb +49 -0
- data/lib/1.8/gtk3.so +0 -0
- data/lib/1.9/gtk3.so +0 -0
- data/lib/gtk3.rb +10 -0
- data/lib/gtk3/base.rb +67 -0
- data/lib/gtk3/deprecated.rb +1001 -0
- data/sample/gtk-demo/README +7 -0
- data/sample/gtk-demo/alphatest.png +0 -0
- data/sample/gtk-demo/apple-red.png +0 -0
- data/sample/gtk-demo/appwindow.rb +233 -0
- data/sample/gtk-demo/background.jpg +0 -0
- data/sample/gtk-demo/builder.rb +51 -0
- data/sample/gtk-demo/button_box.rb +84 -0
- data/sample/gtk-demo/cairo-arc-negative.rb +41 -0
- data/sample/gtk-demo/cairo-arc.rb +41 -0
- data/sample/gtk-demo/cairo-clip-image.rb +51 -0
- data/sample/gtk-demo/cairo-clip-rectangle.rb +35 -0
- data/sample/gtk-demo/cairo-clip.rb +35 -0
- data/sample/gtk-demo/cairo-curve-rectangle.rb +76 -0
- data/sample/gtk-demo/cairo-curve-to.rb +43 -0
- data/sample/gtk-demo/cairo-dash.rb +39 -0
- data/sample/gtk-demo/cairo-fill-and-stroke.rb +32 -0
- data/sample/gtk-demo/cairo-fill-and-stroke2.rb +38 -0
- data/sample/gtk-demo/cairo-gradient.rb +35 -0
- data/sample/gtk-demo/cairo-image-pattern.rb +39 -0
- data/sample/gtk-demo/cairo-image.rb +49 -0
- data/sample/gtk-demo/cairo-line-cap.rb +53 -0
- data/sample/gtk-demo/cairo-line-join.rb +41 -0
- data/sample/gtk-demo/cairo-long-lines.rb +41 -0
- data/sample/gtk-demo/cairo-operator.rb +83 -0
- data/sample/gtk-demo/cairo-path.rb +28 -0
- data/sample/gtk-demo/cairo-pattern-fill.rb +88 -0
- data/sample/gtk-demo/cairo-self-intersect.rb +32 -0
- data/sample/gtk-demo/cairo-text-align-center.rb +45 -0
- data/sample/gtk-demo/cairo-text-extents.rb +46 -0
- data/sample/gtk-demo/cairo-text.rb +43 -0
- data/sample/gtk-demo/changedisplay.rb +408 -0
- data/sample/gtk-demo/clipboard.rb +72 -0
- data/sample/gtk-demo/colorsel.rb +84 -0
- data/sample/gtk-demo/common.rb +88 -0
- data/sample/gtk-demo/demo.ui +258 -0
- data/sample/gtk-demo/dialog.rb +137 -0
- data/sample/gtk-demo/drawingarea.rb +226 -0
- data/sample/gtk-demo/editable_cells.rb +172 -0
- data/sample/gtk-demo/entry_completion.rb +63 -0
- data/sample/gtk-demo/expander.rb +40 -0
- data/sample/gtk-demo/floppybuddy.gif +0 -0
- data/sample/gtk-demo/gnome-applets.png +0 -0
- data/sample/gtk-demo/gnome-calendar.png +0 -0
- data/sample/gtk-demo/gnome-foot.png +0 -0
- data/sample/gtk-demo/gnome-fs-directory.png +0 -0
- data/sample/gtk-demo/gnome-fs-regular.png +0 -0
- data/sample/gtk-demo/gnome-gimp.png +0 -0
- data/sample/gtk-demo/gnome-gmush.png +0 -0
- data/sample/gtk-demo/gnome-gsame.png +0 -0
- data/sample/gtk-demo/gnu-keys.png +0 -0
- data/sample/gtk-demo/gtk-logo-rgb.gif +0 -0
- data/sample/gtk-demo/hypertext.rb +211 -0
- data/sample/gtk-demo/iconview.rb +109 -0
- data/sample/gtk-demo/images.rb +197 -0
- data/sample/gtk-demo/item_factory.rb +94 -0
- data/sample/gtk-demo/list_store.rb +138 -0
- data/sample/gtk-demo/main.rb +382 -0
- data/sample/gtk-demo/menus.rb +172 -0
- data/sample/gtk-demo/panes.rb +156 -0
- data/sample/gtk-demo/pixbufs.rb +176 -0
- data/sample/gtk-demo/printing.rb +128 -0
- data/sample/gtk-demo/rotated_text.rb +84 -0
- data/sample/gtk-demo/ruby-gnome2-logo.png +0 -0
- data/sample/gtk-demo/sizegroup.rb +118 -0
- data/sample/gtk-demo/stock_browser.rb +235 -0
- data/sample/gtk-demo/textview.rb +436 -0
- data/sample/gtk-demo/tree_store.rb +270 -0
- data/sample/misc/aboutdialog.rb +42 -0
- data/sample/misc/aboutdialog2.rb +42 -0
- data/sample/misc/alpha-demo.rb +70 -0
- data/sample/misc/assistant.rb +347 -0
- data/sample/misc/bindings.rb +107 -0
- data/sample/misc/button.rb +69 -0
- data/sample/misc/button2.rb +28 -0
- data/sample/misc/buttonbox.rb +93 -0
- data/sample/misc/cairo-pong.rb +215 -0
- data/sample/misc/calendar.rb +66 -0
- data/sample/misc/checkbutton.rb +46 -0
- data/sample/misc/colorselection.rb +25 -0
- data/sample/misc/combo_check.rb +71 -0
- data/sample/misc/combobox.rb +86 -0
- data/sample/misc/composited-windows.rb +113 -0
- data/sample/misc/cursor.rb +32 -0
- data/sample/misc/dialog.rb +44 -0
- data/sample/misc/dialog2.rb +39 -0
- data/sample/misc/dnd.rb +64 -0
- data/sample/misc/dndtreeview.rb +56 -0
- data/sample/misc/drag-move.rb +131 -0
- data/sample/misc/drawing.rb +90 -0
- data/sample/misc/entry.rb +34 -0
- data/sample/misc/entrycompletion.rb +33 -0
- data/sample/misc/expander.rb +27 -0
- data/sample/misc/filechooser.rb +41 -0
- data/sample/misc/frame.rb +69 -0
- data/sample/misc/gdkscreen.rb +32 -0
- data/sample/misc/gnome-logo-icon.png +0 -0
- data/sample/misc/helloworld.rb +35 -0
- data/sample/misc/iconview.rb +38 -0
- data/sample/misc/image.rb +42 -0
- data/sample/misc/itemfactory.rb +73 -0
- data/sample/misc/itemfactory2.rb +74 -0
- data/sample/misc/keyboard_grab.rb +29 -0
- data/sample/misc/label.rb +33 -0
- data/sample/misc/linkbutton.rb +42 -0
- data/sample/misc/listview.rb +92 -0
- data/sample/misc/menu.rb +81 -0
- data/sample/misc/misc_button.rb +49 -0
- data/sample/misc/mouse-gesture.rb +465 -0
- data/sample/misc/pangorenderer.rb +66 -0
- data/sample/misc/pointer_grab.rb +34 -0
- data/sample/misc/print.rb +247 -0
- data/sample/misc/properties.rb +85 -0
- data/sample/misc/radiobutton.rb +47 -0
- data/sample/misc/recentchooserdialog.rb +52 -0
- data/sample/misc/rgtk+cairo.rb +42 -0
- data/sample/misc/scalebutton.rb +19 -0
- data/sample/misc/settings.rb +41 -0
- data/sample/misc/statusicon.rb +123 -0
- data/sample/misc/stock.rb +36 -0
- data/sample/misc/style_property.rb +67 -0
- data/sample/misc/style_property.rc +19 -0
- data/sample/misc/t-gtkplug.rb +58 -0
- data/sample/misc/t-gtksocket.rb +65 -0
- data/sample/misc/test.xpm +92 -0
- data/sample/misc/textbuffer_serialize.rb +130 -0
- data/sample/misc/threads.rb +72 -0
- data/sample/misc/to_drawable.rb +42 -0
- data/sample/misc/togglebutton.rb +34 -0
- data/sample/misc/toolbar.rb +55 -0
- data/sample/misc/tooltips.rb +204 -0
- data/sample/misc/tree_combo.rb +79 -0
- data/sample/misc/tree_progress.rb +63 -0
- data/sample/misc/treemodelfilter.rb +49 -0
- data/sample/misc/treeview.rb +71 -0
- data/sample/misc/uimanager.rb +148 -0
- data/sample/misc/uimanager2.rb +91 -0
- data/sample/misc/uimanager2.xml +36 -0
- data/sample/misc/window.rb +24 -0
- data/sample/misc/xbm_cursor.rb +43 -0
- data/sample/testgtk/3DRings.xpm +116 -0
- data/sample/testgtk/FilesQueue.xpm +98 -0
- data/sample/testgtk/Modeller.xpm +117 -0
- data/sample/testgtk/README +14 -0
- data/sample/testgtk/button.rb +124 -0
- data/sample/testgtk/buttonbox.rb +100 -0
- data/sample/testgtk/check-n.xpm +21 -0
- data/sample/testgtk/check-y.xpm +21 -0
- data/sample/testgtk/checkbutton.rb +67 -0
- data/sample/testgtk/circles.xbm +46 -0
- data/sample/testgtk/colorselect.rb +33 -0
- data/sample/testgtk/dialog.rb +48 -0
- data/sample/testgtk/entry.rb +73 -0
- data/sample/testgtk/filesel.rb +65 -0
- data/sample/testgtk/fontselection.rb +56 -0
- data/sample/testgtk/labels.rb +74 -0
- data/sample/testgtk/layout.rb +108 -0
- data/sample/testgtk/marble.xpm +408 -0
- data/sample/testgtk/menu.rb +79 -0
- data/sample/testgtk/notebook.rb +280 -0
- data/sample/testgtk/pixmap.rb +58 -0
- data/sample/testgtk/progressbar.rb +173 -0
- data/sample/testgtk/radiobutton.rb +61 -0
- data/sample/testgtk/range.rb +65 -0
- data/sample/testgtk/reparent.rb +91 -0
- data/sample/testgtk/sample.rb +80 -0
- data/sample/testgtk/savedposition.rb +87 -0
- data/sample/testgtk/scrolledwindow.rb +67 -0
- data/sample/testgtk/shapedwindow.rb +99 -0
- data/sample/testgtk/spinbutton.rb +181 -0
- data/sample/testgtk/statusbar.rb +89 -0
- data/sample/testgtk/test.xpm +92 -0
- data/sample/testgtk/testgtk.rb +176 -0
- data/sample/testgtk/testgtkrc +146 -0
- data/sample/testgtk/testgtkrc2 +21 -0
- data/sample/testgtk/togglebutton.rb +53 -0
- data/sample/testgtk/toolbar.rb +82 -0
- data/sample/testgtk/tooltips.rb +41 -0
- data/sample/testgtk/wmhints.rb +40 -0
- data/test/gtk-test-utils.rb +15 -0
- data/test/run-test.rb +32 -0
- data/test/test_gc.rb +25 -0
- data/test/test_gdk.rb +18 -0
- data/test/test_gdk_color.rb +10 -0
- data/test/test_gdk_display.rb +37 -0
- data/test/test_gdk_event.rb +11 -0
- data/test/test_gdk_gc.rb +7 -0
- data/test/test_gdk_keymap.rb +8 -0
- data/test/test_gdk_pango.rb +9 -0
- data/test/test_gdk_selection_data.rb +17 -0
- data/test/test_gdk_window.rb +29 -0
- data/test/test_gdk_window_attribute.rb +9 -0
- data/test/test_gtk_about_dialog.rb +14 -0
- data/test/test_gtk_buildable.rb +66 -0
- data/test/test_gtk_builder.rb +188 -0
- data/test/test_gtk_entry.rb +18 -0
- data/test/test_gtk_icon_theme.rb +30 -0
- data/test/test_gtk_image.rb +8 -0
- data/test/test_gtk_list_store.rb +65 -0
- data/test/test_gtk_menu_item.rb +13 -0
- data/test/test_gtk_rc_style.rb +14 -0
- data/test/test_gtk_tree_path.rb +20 -0
- data/test/test_gtk_unix_print.rb +14 -0
- data/test/test_gtk_widget.rb +32 -0
- data/vendor/local/bin/gtk-builder-convert +799 -0
- data/vendor/local/bin/gtk-demo.exe +0 -0
- data/vendor/local/bin/gtk-query-immodules-2.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/libgailutil-18.dll +0 -0
- data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
- data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
- data/vendor/local/etc/gtk-2.0/gtk.immodules +4 -0
- data/vendor/local/etc/gtk-2.0/gtkrc +1 -0
- data/vendor/local/etc/gtk-2.0/im-multipress.conf +22 -0
- data/vendor/local/include/gail-1.0/gail/gailwidget.h +65 -0
- data/vendor/local/include/gail-1.0/libgail-util/gail-util.h +2 -0
- data/vendor/local/include/gail-1.0/libgail-util/gailmisc.h +82 -0
- data/vendor/local/include/gail-1.0/libgail-util/gailtextutil.h +87 -0
- data/vendor/local/include/gtk-2.0/gdk/gdk.h +241 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkapplaunchcontext.h +76 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +59 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcolor.h +176 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcursor.h +168 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +229 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplaymanager.h +67 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +186 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +436 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkenumtypes.h +137 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkevents.h +566 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +138 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkgc.h +298 -0
- data/vendor/local/include/gtk-2.0/gdk/gdki18n.h +59 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkimage.h +145 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +192 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeys.h +134 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms-compat.h +2208 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms.h +2221 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpango.h +166 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpixbuf.h +115 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +136 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkprivate.h +60 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +128 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkregion.h +127 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkrgb.h +149 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkscreen.h +132 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkselection.h +111 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +64 -0
- data/vendor/local/include/gtk-2.0/gdk/gdktestutils.h +49 -0
- data/vendor/local/include/gtk-2.0/gdk/gdktypes.h +226 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkvisual.h +147 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +129 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +743 -0
- data/vendor/local/include/gtk-2.0/gtk/gtk.h +248 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccelgroup.h +216 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccellabel.h +114 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccelmap.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccessible.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +180 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +184 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkactivatable.h +88 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkadjustment.h +121 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkalignment.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkarrow.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaspectframe.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +176 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbbox.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbin.h +70 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbindings.h +158 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbox.h +159 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbuildable.h +176 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbuilder.h +143 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +147 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcalendar.h +209 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcelleditable.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcelllayout.h +122 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderer.h +195 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendereraccel.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderercombo.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererprogress.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspin.h +57 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspinner.h +67 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertext.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertoggle.h +85 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellview.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcheckbutton.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcheckmenuitem.h +102 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkclipboard.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkclist.h +792 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +103 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorsel.h +135 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorseldialog.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcombo.h +118 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +153 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcontainer.h +229 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkctree.h +445 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcurve.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdebug.h +79 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdialog.h +186 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdnd.h +188 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdrawingarea.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkeditable.h +117 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +334 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +133 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentrycompletion.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkenums.h +584 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkeventbox.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +98 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +264 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserdialog.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserwidget.h +67 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfixed.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +100 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +220 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +96 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkgamma.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkgc.h +49 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhandlebox.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhbbox.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhbox.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhpaned.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhscale.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhscrollbar.h +70 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhseparator.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhsv.h +115 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +189 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +198 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconview.h +242 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +274 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimagemenuitem.h +86 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimcontext.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimcontextsimple.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimmodule.h +58 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimmulticontext.h +78 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinfobar.h +120 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinputdialog.h +100 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinvisible.h +78 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkitem.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +236 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +207 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklayout.h +138 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklist.h +138 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklistitem.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkliststore.h +147 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +233 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmarshal.h +283 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +219 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenubar.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +145 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenushell.h +141 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenutoolbutton.h +89 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmessagedialog.h +135 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmisc.h +85 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmodules.h +54 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmountoperation.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +317 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkobject.h +250 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoffscreenwindow.h +60 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoldeditable.h +126 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoptionmenu.h +88 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkorientable.h +60 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpagesetup.h +108 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpaned.h +144 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpixmap.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkplug.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpreview.h +137 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintcontext.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +207 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperationpreview.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +234 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprogress.h +120 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +172 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradioaction.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiobutton.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiomenuitem.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiotoolbutton.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +215 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrc.h +271 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentaction.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooser.h +191 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserdialog.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchoosermenu.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserwidget.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +216 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +136 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscale.h +111 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscalebutton.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscrollbar.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscrolledwindow.h +136 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkselection.h +221 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparator.h +66 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparatormenuitem.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparatortoolitem.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksettings.h +139 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkshow.h +39 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksignal.h +149 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksizegroup.h +111 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksocket.h +102 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkspinbutton.h +196 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkspinner.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusbar.h +117 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstock.h +1016 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstyle.h +945 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktable.h +151 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktearoffmenuitem.h +75 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktestutils.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktext.h +217 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextbuffer.h +409 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextbufferrichtext.h +96 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextchild.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextdisplay.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextiter.h +307 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextlayout.h +439 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktexttag.h +289 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktexttagtable.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextview.h +376 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktipsquery.h +110 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoggleaction.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktogglebutton.h +97 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoggletoolbutton.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbar.h +288 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +99 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitem.h +142 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +99 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +144 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolshell.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktooltip.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktooltips.h +109 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktree.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreednd.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeitem.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodel.h +270 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodelfilter.h +109 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodelsort.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeselection.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreesortable.h +103 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreestore.h +159 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeview.h +431 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +245 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktypebuiltins.h +335 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +264 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkuimanager.h +153 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvbbox.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvbox.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +51 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkviewport.h +93 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvolumebutton.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvpaned.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvscale.h +79 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvscrollbar.h +76 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvseparator.h +76 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1351 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +452 -0
- data/vendor/local/lib/gailutil.lib +0 -0
- data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/include/gdkconfig.h +35 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gail.pc +11 -0
- data/vendor/local/lib/pkgconfig/gdk-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +15 -0
- data/vendor/local/manifest/gtk+-dev_2.24.10-1_win32.mft +947 -0
- data/vendor/local/manifest/gtk+_2.24.10-1_win32.mft +225 -0
- data/vendor/local/share/aclocal/gtk-2.0.m4 +196 -0
- data/vendor/local/share/doc/gtk+-2.24.10/COPYING +482 -0
- data/vendor/local/share/doc/gtk+-dev-2.24.10/COPYING +482 -0
- data/vendor/local/share/gtk-2.0/demo/alphatest.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/apple-red.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/appwindow.c +591 -0
- data/vendor/local/share/gtk-2.0/demo/assistant.c +216 -0
- data/vendor/local/share/gtk-2.0/demo/background.jpg +0 -0
- data/vendor/local/share/gtk-2.0/demo/builder.c +68 -0
- data/vendor/local/share/gtk-2.0/demo/button_box.c +127 -0
- data/vendor/local/share/gtk-2.0/demo/changedisplay.c +643 -0
- data/vendor/local/share/gtk-2.0/demo/clipboard.c +326 -0
- data/vendor/local/share/gtk-2.0/demo/colorsel.c +142 -0
- data/vendor/local/share/gtk-2.0/demo/combobox.c +454 -0
- data/vendor/local/share/gtk-2.0/demo/demo.ui +258 -0
- data/vendor/local/share/gtk-2.0/demo/dialog.c +181 -0
- data/vendor/local/share/gtk-2.0/demo/drawingarea.c +308 -0
- data/vendor/local/share/gtk-2.0/demo/editable_cells.c +393 -0
- data/vendor/local/share/gtk-2.0/demo/entry_buffer.c +65 -0
- data/vendor/local/share/gtk-2.0/demo/entry_completion.c +97 -0
- data/vendor/local/share/gtk-2.0/demo/expander.c +58 -0
- data/vendor/local/share/gtk-2.0/demo/floppybuddy.gif +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-applets.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-calendar.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-foot.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-fs-directory.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-fs-regular.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gimp.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gmush.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gsame.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnu-keys.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gtk-logo-rgb.gif +0 -0
- data/vendor/local/share/gtk-2.0/demo/hypertext.c +315 -0
- data/vendor/local/share/gtk-2.0/demo/iconview.c +372 -0
- data/vendor/local/share/gtk-2.0/demo/iconview_edit.c +159 -0
- data/vendor/local/share/gtk-2.0/demo/images.c +464 -0
- data/vendor/local/share/gtk-2.0/demo/infobar.c +104 -0
- data/vendor/local/share/gtk-2.0/demo/links.c +84 -0
- data/vendor/local/share/gtk-2.0/demo/list_store.c +295 -0
- data/vendor/local/share/gtk-2.0/demo/menus.c +210 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +579 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +500 -0
- data/vendor/local/share/gtk-2.0/demo/panes.c +194 -0
- data/vendor/local/share/gtk-2.0/demo/pickers.c +73 -0
- data/vendor/local/share/gtk-2.0/demo/pixbufs.c +270 -0
- data/vendor/local/share/gtk-2.0/demo/printing.c +212 -0
- data/vendor/local/share/gtk-2.0/demo/rotated_text.c +237 -0
- data/vendor/local/share/gtk-2.0/demo/search_entry.c +335 -0
- data/vendor/local/share/gtk-2.0/demo/sizegroup.c +167 -0
- data/vendor/local/share/gtk-2.0/demo/spinner.c +94 -0
- data/vendor/local/share/gtk-2.0/demo/stock_browser.c +546 -0
- data/vendor/local/share/gtk-2.0/demo/textscroll.c +200 -0
- data/vendor/local/share/gtk-2.0/demo/textview.c +569 -0
- data/vendor/local/share/gtk-2.0/demo/toolpalette.c +795 -0
- data/vendor/local/share/gtk-2.0/demo/tree_store.c +450 -0
- data/vendor/local/share/gtk-2.0/demo/ui_manager.c +237 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +449 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +275 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +30 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +44 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.sgml +27 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +41 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +1283 -0
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +262 -0
- data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +1526 -0
- data/vendor/local/share/gtk-doc/html/gdk/X_cursor.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +74 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +123 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +124 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +124 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +42 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +109 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +515 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +51 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +224 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +123 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +128 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +115 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +1012 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +3674 -0
- data/vendor/local/share/gtk-doc/html/gdk/arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/based_arrow_down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/based_arrow_up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/boat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bogosity.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bottom_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bottom_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bottom_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bottom_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/box_spiral.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/center_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/circle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/clock.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/coffee_mug.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/cross_reverse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/crosshair.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/diamond_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/dot.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/dotbox.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/draft_large.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/draft_small.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/draped_box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/exchange.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/fleur.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +319 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +611 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +415 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +950 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +1137 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +911 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +2088 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +1690 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +1264 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +1449 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +1182 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +902 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +1653 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +824 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +960 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +297 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +1016 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +861 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +648 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +968 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +1005 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +657 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +210 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +933 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +827 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +6581 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +2486 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +1331 -0
- data/vendor/local/share/gtk-doc/html/gdk/gobbler.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/gumby.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/hand1.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/hand2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/heart.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/icon.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/index.html +143 -0
- data/vendor/local/share/gtk-doc/html/gdk/index.sgml +1446 -0
- data/vendor/local/share/gtk-doc/html/gdk/iron_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/left_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/left_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/left_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/leftbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/ll_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/lr_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/man.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/middlebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/mouse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/multihead.html +201 -0
- data/vendor/local/share/gtk-doc/html/gdk/pencil.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/pirate.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/plus.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/question_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/reference.html +131 -0
- data/vendor/local/share/gtk-doc/html/gdk/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/right_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/right_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/right_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/rightbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/rotated-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/rtl_logo.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sailboat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_down_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_h_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_right_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_up_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_v_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/shuttle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sizing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/spider.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/spraycan.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/star.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gdk/target.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/tcross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/trek.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/ul_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/umbrella.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/ur_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/watch.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/xterm.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk/Actions.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/Builder.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +83 -0
- data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +56 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +1423 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +340 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +147 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +1582 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +1222 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +856 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +807 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +390 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +205 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +238 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +1134 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +131 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +773 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +638 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +1121 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +1110 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +555 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +3832 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +2563 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +1059 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +270 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +520 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +1132 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +254 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +227 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +206 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +199 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +161 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +157 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +582 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +351 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +433 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +214 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +436 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +786 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +231 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +507 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +1555 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +298 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +1510 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +423 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +1323 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +251 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +662 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +3428 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +590 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +1128 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +292 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +739 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +3186 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +498 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +321 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +170 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +611 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +326 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +571 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +526 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +417 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +444 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +132 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +230 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +108 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +129 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +462 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +160 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +125 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +130 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +478 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +947 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +148 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +175 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +1410 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +2689 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +1501 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +456 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +714 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +200 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +197 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +235 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +1172 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +2086 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +577 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +390 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +972 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +438 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +1056 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +1353 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +412 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +882 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +671 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +431 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +786 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +313 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +2682 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +1217 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +186 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +501 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +333 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +937 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +242 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +760 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPaperSize.html +820 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +239 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +357 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +652 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +513 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +527 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +2677 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +853 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +931 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +555 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +852 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +367 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +525 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +457 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +327 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +1389 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +267 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +1376 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +228 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +259 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +620 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +1564 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +357 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +537 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +571 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +187 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +738 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +90 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +110 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +211 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +1215 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +440 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +388 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +1260 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +203 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +1716 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +491 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +4192 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +759 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +135 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +3605 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextIter.html +2871 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +325 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +1157 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +381 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +3002 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +452 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +315 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +508 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +279 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +667 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +1147 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +705 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +1007 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +394 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +1851 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +414 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +450 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +767 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +2402 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +654 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +551 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +796 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +458 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +1028 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +4656 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +1845 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +1290 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +133 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +209 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +108 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +129 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +160 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +123 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +111 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +398 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +112 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +10064 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +4007 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +175 -0
- data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +68 -0
- data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk/Printing.html +59 -0
- data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +71 -0
- data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +47 -0
- data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +556 -0
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +57 -0
- data/vendor/local/share/gtk-doc/html/gtk/aboutdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/accel-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +2095 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +790 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +786 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +602 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +518 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +291 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +465 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +181 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +1858 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +1090 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +386 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +3401 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +22926 -0
- data/vendor/local/share/gtk-doc/html/gtk/application-exit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/assistant.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/ch01.html +246 -0
- data/vendor/local/share/gtk-doc/html/gtk/ch02.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +496 -0
- data/vendor/local/share/gtk-doc/html/gtk/check-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +84 -0
- data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk/color-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/colorsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/combo-box-entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/combo-box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-information.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-password.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-question.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-new.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-open.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-print-preview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-print.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-properties.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-revert-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-revert-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-save-as.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-save.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/drive-harddisk.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-clear.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-copy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-cut.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-delete.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-find-replace.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-find.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-paste.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-redo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-redo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-select-all.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-undo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-undo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/figure-hierarchical-drawing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/figure-windowed-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/file-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/filechooser.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/folder.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/font-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/fontsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-indent-less-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-indent-less-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-indent-more-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-indent-more-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-justify-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-justify-fill.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-justify-left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-justify-right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-text-bold.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-text-italic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-text-strikethrough.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-text-underline.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/frame.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/glossary.html +312 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-bottom.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-first-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-first-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-jump-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-jump-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-last-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-last-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-next-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-next-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-previous-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-previous-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-top.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +522 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +857 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +1525 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +1419 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +285 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +346 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +1760 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +123 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +439 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +2571 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +979 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +169 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +1726 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +1601 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +1536 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +1357 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +1565 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +589 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +1497 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +1574 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-apply.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +86 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +441 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-cancel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-caps-lock-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +568 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +1175 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-color-picker.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +111 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-connect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-convert.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +60 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-disconnect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-dnd-multiple.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-dnd.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-edit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-font.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +493 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +509 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-index.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +85 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +160 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +91 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +102 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +118 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +107 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +256 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +80 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +264 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +310 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +163 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +293 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +124 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-no.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-ok.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-reverse-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-reverse-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-page-setup.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-preferences.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +68 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +1422 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +143 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +344 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-select-color.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-undelete-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-undelete-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +106 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +87 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +134 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-yes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +6465 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk.html +159 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +40 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +55 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +51 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +206 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +97 -0
- data/vendor/local/share/gtk-doc/html/gtk/help-about.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/help-contents.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/icon-view.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/image-missing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/image.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/index.html +875 -0
- data/vendor/local/share/gtk-doc/html/gtk/index.sgml +7988 -0
- data/vendor/local/share/gtk-doc/html/gtk/label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-btlr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-btrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-lrbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-lrtb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-rlbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-rltb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-tblr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-tbrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/link-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/list-add.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/list-and-tree.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/list-remove.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-floppy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-optical.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-playback-pause.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-playback-start-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-playback-start-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-playback-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-record.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-seek-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-seek-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-seek-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-seek-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-skip-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-skip-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-skip-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-skip-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/menubar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/messagedialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +94 -0
- data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +351 -0
- data/vendor/local/share/gtk-doc/html/gtk/migrating.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk/multiline-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/network-idle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +71 -0
- data/vendor/local/share/gtk-doc/html/gtk/notebook.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/pagesetupdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/panes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printer-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printer-info.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printer-paused.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printer-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/process-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/progressbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/pt05.html +44 -0
- data/vendor/local/share/gtk-doc/html/gtk/radio-group.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/recentchooserdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/scales.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/scrolledwindow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/separator.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk/spinbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/spinner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/statusbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gtk/system-run.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/text-x-generic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/toggle-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/toolbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/toolpalette.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/tools-check-spelling.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/tree-view-coordinates.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-fullscreen.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-refresh.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-restore.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-sort-ascending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-sort-descending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/volumebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/window-close.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/window.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/zoom-fit-best.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/zoom-in.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/zoom-original.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/zoom-out.png +0 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/themes/Default/gtk-2.0-key/gtkrc +3 -0
- data/vendor/local/share/themes/Emacs/gtk-2.0-key/gtkrc +113 -0
- data/vendor/local/share/themes/MS-Windows/gtk-2.0/gtkrc +66 -0
- data/vendor/local/share/themes/Raleigh/gtk-2.0/gtkrc +3 -0
- data/vendor/local/src/dieterv/packaging/gtk+_2.24.10-1_win32.log +4954 -0
- data/vendor/local/src/dieterv/packaging/gtk+_2.24.10-1_win32.sh +99 -0
- metadata +1759 -0
@@ -0,0 +1,3428 @@
|
|
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.76.1">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 2 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 (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+ 2 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="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkEntry.html#gtk-entry-new-with-max-length" title="gtk_entry_new_with_max_length ()">gtk_entry_new_with_max_length</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> max</code></em>);
|
57
|
+
<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>);
|
58
|
+
<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>,
|
59
|
+
<em class="parameter"><code><a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> *buffer</code></em>);
|
60
|
+
<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>,
|
61
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);
|
62
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-append-text" title="gtk_entry_append_text ()">gtk_entry_append_text</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
63
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);
|
64
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-prepend-text" title="gtk_entry_prepend_text ()">gtk_entry_prepend_text</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
65
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);
|
66
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-position" title="gtk_entry_set_position ()">gtk_entry_set_position</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
67
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);
|
68
|
+
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <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>);
|
69
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> <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>);
|
70
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-select-region" title="gtk_entry_select_region ()">gtk_entry_select_region</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><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> start</code></em>,
|
72
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> end</code></em>);
|
73
|
+
<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>,
|
74
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> visible</code></em>);
|
75
|
+
<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>,
|
76
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Unicode-Manipulation.html#gunichar"><span class="type">gunichar</span></a> ch</code></em>);
|
77
|
+
<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>);
|
78
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkEntry.html#gtk-entry-set-editable" title="gtk_entry_set_editable ()">gtk_entry_set_editable</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><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> editable</code></em>);
|
80
|
+
<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>,
|
81
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> max</code></em>);
|
82
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>);
|
83
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>);
|
84
|
+
const <a class="link" href="GtkStyle.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>);
|
85
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>);
|
86
|
+
<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>,
|
87
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);
|
88
|
+
<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>,
|
89
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);
|
90
|
+
<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>,
|
91
|
+
<em class="parameter"><code>const <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a> *border</code></em>);
|
92
|
+
<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>,
|
93
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_chars</code></em>);
|
94
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Unicode-Manipulation.html#gunichar"><span class="returnvalue">gunichar</span></a> <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>);
|
95
|
+
<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>,
|
96
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> xalign</code></em>);
|
97
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="returnvalue">gfloat</span></a> <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>);
|
98
|
+
<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>,
|
99
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> overwrite</code></em>);
|
100
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>);
|
101
|
+
<a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="returnvalue">PangoLayout</span></a> * <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>);
|
102
|
+
<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>,
|
103
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
|
104
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>);
|
105
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>
|
106
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
107
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> layout_index</code></em>);
|
108
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>
|
109
|
+
(<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 href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> text_index</code></em>);
|
111
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>);
|
112
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>);
|
113
|
+
<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>,
|
114
|
+
<em class="parameter"><code><a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="type">GtkEntryCompletion</span></a> *completion</code></em>);
|
115
|
+
<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>);
|
116
|
+
<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>,
|
117
|
+
<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);
|
118
|
+
<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>);
|
119
|
+
<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>,
|
120
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> fraction</code></em>);
|
121
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> <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>);
|
122
|
+
<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>,
|
123
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> fraction</code></em>);
|
124
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> <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>);
|
125
|
+
<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>);
|
126
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>
|
127
|
+
(<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 href="../gdk/gdk-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>);
|
129
|
+
<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>);
|
130
|
+
enum <a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition">GtkEntryIconPosition</a>;
|
131
|
+
<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>,
|
132
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
133
|
+
<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>);
|
134
|
+
<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>,
|
135
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
136
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>);
|
137
|
+
<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>,
|
138
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
139
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>);
|
140
|
+
<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>,
|
141
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
142
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>);
|
143
|
+
<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>,
|
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
|
+
<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>,
|
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
|
+
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <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>,
|
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
|
+
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <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>,
|
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
|
+
<a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="returnvalue">GIcon</span></a> * <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>,
|
152
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
153
|
+
<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>,
|
154
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
155
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> activatable</code></em>);
|
156
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>,
|
157
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
158
|
+
<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>,
|
159
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
160
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> sensitive</code></em>);
|
161
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <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>,
|
162
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
163
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>,
|
164
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
165
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);
|
166
|
+
<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>,
|
167
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
168
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *tooltip</code></em>);
|
169
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <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>,
|
170
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
171
|
+
<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>,
|
172
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
173
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *tooltip</code></em>);
|
174
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <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>,
|
175
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
176
|
+
<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>,
|
177
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
178
|
+
<em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>,
|
179
|
+
<em class="parameter"><code><a href="../gdk/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);
|
180
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <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>
|
181
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
182
|
+
<a href="../gdk/gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * <a class="link" href="GtkEntry.html#gtk-entry-get-icon-window" title="gtk_entry_get_icon_window ()">gtk_entry_get_icon_window</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#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>);
|
184
|
+
<a href="../gdk/gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * <a class="link" href="GtkEntry.html#gtk-entry-get-text-window" title="gtk_entry_get_text_window ()">gtk_entry_get_text_window</a> (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);
|
185
|
+
</pre>
|
186
|
+
</div>
|
187
|
+
<div class="refsect1">
|
188
|
+
<a name="GtkEntry.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
189
|
+
<pre class="synopsis">
|
190
|
+
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
191
|
+
+----<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
|
192
|
+
+----<a class="link" href="GtkObject.html" title="GtkObject">GtkObject</a>
|
193
|
+
+----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
|
194
|
+
+----GtkEntry
|
195
|
+
+----<a class="link" href="GtkSpinButton.html" title="GtkSpinButton">GtkSpinButton</a>
|
196
|
+
</pre>
|
197
|
+
</div>
|
198
|
+
<div class="refsect1">
|
199
|
+
<a name="GtkEntry.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
200
|
+
<p>
|
201
|
+
GtkEntry implements
|
202
|
+
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>
|
203
|
+
</div>
|
204
|
+
<div class="refsect1">
|
205
|
+
<a name="GtkEntry.properties"></a><h2>Properties</h2>
|
206
|
+
<pre class="synopsis">
|
207
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--activates-default" title='The "activates-default" property'>activates-default</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
208
|
+
"<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
|
209
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--caps-lock-warning" title='The "caps-lock-warning" property'>caps-lock-warning</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
210
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--cursor-position" title='The "cursor-position" property'>cursor-position</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
|
211
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--editable" title='The "editable" property'>editable</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
212
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--has-frame" title='The "has-frame" property'>has-frame</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
213
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--im-module" title='The "im-module" property'>im-module</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
|
214
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--inner-border" title='The "inner-border" property'>inner-border</a>" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read / Write
|
215
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--invisible-char" title='The "invisible-char" property'>invisible-char</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write
|
216
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--invisible-char-set" title='The "invisible-char-set" property'>invisible-char-set</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
217
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--max-length" title='The "max-length" property'>max-length</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
|
218
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--overwrite-mode" title='The "overwrite-mode" property'>overwrite-mode</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
219
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-activatable" title='The "primary-icon-activatable" property'>primary-icon-activatable</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
220
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-gicon" title='The "primary-icon-gicon" property'>primary-icon-gicon</a>" <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>* : Read / Write
|
221
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-name" title='The "primary-icon-name" property'>primary-icon-name</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
|
222
|
+
"<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
|
223
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-sensitive" title='The "primary-icon-sensitive" property'>primary-icon-sensitive</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
224
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-stock" title='The "primary-icon-stock" property'>primary-icon-stock</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
|
225
|
+
"<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
|
226
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-tooltip-markup" title='The "primary-icon-tooltip-markup" property'>primary-icon-tooltip-markup</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
|
227
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--primary-icon-tooltip-text" title='The "primary-icon-tooltip-text" property'>primary-icon-tooltip-text</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
|
228
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--progress-fraction" title='The "progress-fraction" property'>progress-fraction</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write
|
229
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--progress-pulse-step" title='The "progress-pulse-step" property'>progress-pulse-step</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write
|
230
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--scroll-offset" title='The "scroll-offset" property'>scroll-offset</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
|
231
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-activatable" title='The "secondary-icon-activatable" property'>secondary-icon-activatable</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
232
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-gicon" title='The "secondary-icon-gicon" property'>secondary-icon-gicon</a>" <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>* : Read / Write
|
233
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-name" title='The "secondary-icon-name" property'>secondary-icon-name</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
|
234
|
+
"<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
|
235
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-sensitive" title='The "secondary-icon-sensitive" property'>secondary-icon-sensitive</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
236
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-stock" title='The "secondary-icon-stock" property'>secondary-icon-stock</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
|
237
|
+
"<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
|
238
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-tooltip-markup" title='The "secondary-icon-tooltip-markup" property'>secondary-icon-tooltip-markup</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
|
239
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--secondary-icon-tooltip-text" title='The "secondary-icon-tooltip-text" property'>secondary-icon-tooltip-text</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
|
240
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--selection-bound" title='The "selection-bound" property'>selection-bound</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
|
241
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--shadow-type" title='The "shadow-type" property'>shadow-type</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> : Read / Write
|
242
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--text" title='The "text" property'>text</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
|
243
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--text-length" title='The "text-length" property'>text-length</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read
|
244
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--truncate-multiline" title='The "truncate-multiline" property'>truncate-multiline</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
245
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--visibility" title='The "visibility" property'>visibility</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
246
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--width-chars" title='The "width-chars" property'>width-chars</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
|
247
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--xalign" title='The "xalign" property'>xalign</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read / Write
|
248
|
+
</pre>
|
249
|
+
</div>
|
250
|
+
<div class="refsect1">
|
251
|
+
<a name="GtkEntry.style-properties"></a><h2>Style Properties</h2>
|
252
|
+
<pre class="synopsis">
|
253
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--s-icon-prelight" title='The "icon-prelight" style property'>icon-prelight</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read
|
254
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--s-inner-border" title='The "inner-border" style property'>inner-border</a>" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read
|
255
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--s-invisible-char" title='The "invisible-char" style property'>invisible-char</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read
|
256
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--s-progress-border" title='The "progress-border" style property'>progress-border</a>" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read
|
257
|
+
"<a class="link" href="GtkEntry.html#GtkEntry--s-state-hint" title='The "state-hint" style property'>state-hint</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read
|
258
|
+
</pre>
|
259
|
+
</div>
|
260
|
+
<div class="refsect1">
|
261
|
+
<a name="GtkEntry.signals"></a><h2>Signals</h2>
|
262
|
+
<pre class="synopsis">
|
263
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-activate" title='The "activate" signal'>activate</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
264
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-backspace" title='The "backspace" signal'>backspace</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
265
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-copy-clipboard" title='The "copy-clipboard" signal'>copy-clipboard</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
266
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-cut-clipboard" title='The "cut-clipboard" signal'>cut-clipboard</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
267
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-delete-from-cursor" title='The "delete-from-cursor" signal'>delete-from-cursor</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
268
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-icon-press" title='The "icon-press" signal'>icon-press</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
|
269
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-icon-release" title='The "icon-release" signal'>icon-release</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
|
270
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-insert-at-cursor" title='The "insert-at-cursor" signal'>insert-at-cursor</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
271
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
272
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-paste-clipboard" title='The "paste-clipboard" signal'>paste-clipboard</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
273
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-populate-popup" title='The "populate-popup" signal'>populate-popup</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
|
274
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-preedit-changed" title='The "preedit-changed" signal'>preedit-changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
275
|
+
"<a class="link" href="GtkEntry.html#GtkEntry-toggle-overwrite" title='The "toggle-overwrite" signal'>toggle-overwrite</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
276
|
+
</pre>
|
277
|
+
</div>
|
278
|
+
<div class="refsect1">
|
279
|
+
<a name="GtkEntry.description"></a><h2>Description</h2>
|
280
|
+
<p>
|
281
|
+
The <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> widget is a single line text entry
|
282
|
+
widget. A fairly large set of key bindings are supported
|
283
|
+
by default. If the entered text is longer than the allocation
|
284
|
+
of the widget, the widget will scroll so that the cursor
|
285
|
+
position is visible.
|
286
|
+
</p>
|
287
|
+
<p>
|
288
|
+
When using an entry for passwords and other sensitive information,
|
289
|
+
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>.
|
290
|
+
In this mode, entered text is displayed using a 'invisible' character.
|
291
|
+
By default, GTK+ picks the best invisible character that is available
|
292
|
+
in the current font, but it can be changed with
|
293
|
+
<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
|
294
|
+
when Caps Lock or input methods might interfere with entering text in
|
295
|
+
a password entry. The warning can be turned off with the
|
296
|
+
<span class="type">"caps-lock-warning"</span> property.
|
297
|
+
</p>
|
298
|
+
<p>
|
299
|
+
Since 2.16, GtkEntry has the ability to display progress or activity
|
300
|
+
information behind the text. To make an entry display such information,
|
301
|
+
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>.
|
302
|
+
</p>
|
303
|
+
<p>
|
304
|
+
Additionally, GtkEntry can show icons at either side of the entry. These
|
305
|
+
icons can be activatable by clicking, can be set up as drag source and
|
306
|
+
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
|
307
|
+
one of the various other functions that set an icon from a stock id, an
|
308
|
+
icon name or a pixbuf. To trigger an action when the user clicks an icon,
|
309
|
+
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
|
310
|
+
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
|
311
|
+
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
|
312
|
+
for markup.
|
313
|
+
</p>
|
314
|
+
<p>
|
315
|
+
Note that functionality or information that is only available by clicking
|
316
|
+
on an icon in an entry may not be accessible at all to users which are not
|
317
|
+
able to use a mouse or other pointing device. It is therefore recommended
|
318
|
+
that any such functionality should also be available by other means, e.g.
|
319
|
+
via the context menu of the entry.
|
320
|
+
</p>
|
321
|
+
</div>
|
322
|
+
<div class="refsect1">
|
323
|
+
<a name="GtkEntry.details"></a><h2>Details</h2>
|
324
|
+
<div class="refsect2">
|
325
|
+
<a name="GtkEntry-struct"></a><h3>struct GtkEntry</h3>
|
326
|
+
<pre class="programlisting">struct GtkEntry;</pre>
|
327
|
+
<p>
|
328
|
+
The <a class="link" href="GtkEntry.html#GtkEntry-struct" title="struct GtkEntry"><span class="type">GtkEntry</span></a> struct contains only private data.
|
329
|
+
</p>
|
330
|
+
</div>
|
331
|
+
<hr>
|
332
|
+
<div class="refsect2">
|
333
|
+
<a name="gtk-entry-new"></a><h3>gtk_entry_new ()</h3>
|
334
|
+
<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>
|
335
|
+
<p>
|
336
|
+
Creates a new entry.
|
337
|
+
</p>
|
338
|
+
<div class="variablelist"><table border="0">
|
339
|
+
<col align="left" valign="top">
|
340
|
+
<tbody><tr>
|
341
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
342
|
+
<td>a new <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.</td>
|
343
|
+
</tr></tbody>
|
344
|
+
</table></div>
|
345
|
+
</div>
|
346
|
+
<hr>
|
347
|
+
<div class="refsect2">
|
348
|
+
<a name="gtk-entry-new-with-buffer"></a><h3>gtk_entry_new_with_buffer ()</h3>
|
349
|
+
<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>
|
350
|
+
<p>
|
351
|
+
Creates a new entry with the specified text buffer.
|
352
|
+
</p>
|
353
|
+
<div class="variablelist"><table border="0">
|
354
|
+
<col align="left" valign="top">
|
355
|
+
<tbody>
|
356
|
+
<tr>
|
357
|
+
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
358
|
+
<td>The buffer to use for the new <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.</td>
|
359
|
+
</tr>
|
360
|
+
<tr>
|
361
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
362
|
+
<td>a new <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
363
|
+
</td>
|
364
|
+
</tr>
|
365
|
+
</tbody>
|
366
|
+
</table></div>
|
367
|
+
<p class="since">Since 2.18</p>
|
368
|
+
</div>
|
369
|
+
<hr>
|
370
|
+
<div class="refsect2">
|
371
|
+
<a name="gtk-entry-new-with-max-length"></a><h3>gtk_entry_new_with_max_length ()</h3>
|
372
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_entry_new_with_max_length (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> max</code></em>);</pre>
|
373
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
374
|
+
<h3 class="title">Warning</h3>
|
375
|
+
<p><code class="literal">gtk_entry_new_with_max_length</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <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> instead.</p>
|
376
|
+
</div>
|
377
|
+
<p>
|
378
|
+
Creates a new <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> widget with the given maximum length.
|
379
|
+
</p>
|
380
|
+
<div class="variablelist"><table border="0">
|
381
|
+
<col align="left" valign="top">
|
382
|
+
<tbody>
|
383
|
+
<tr>
|
384
|
+
<td><p><span class="term"><em class="parameter"><code>max</code></em> :</span></p></td>
|
385
|
+
<td>the maximum length of the entry, or 0 for no maximum.
|
386
|
+
(other than the maximum length of entries.) The value passed in will
|
387
|
+
be clamped to the range 0-65536.</td>
|
388
|
+
</tr>
|
389
|
+
<tr>
|
390
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
391
|
+
<td>a new <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
392
|
+
</td>
|
393
|
+
</tr>
|
394
|
+
</tbody>
|
395
|
+
</table></div>
|
396
|
+
</div>
|
397
|
+
<hr>
|
398
|
+
<div class="refsect2">
|
399
|
+
<a name="gtk-entry-get-buffer"></a><h3>gtk_entry_get_buffer ()</h3>
|
400
|
+
<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>
|
401
|
+
<p>
|
402
|
+
Get the <a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> object which holds the text for
|
403
|
+
this widget.
|
404
|
+
</p>
|
405
|
+
<div class="variablelist"><table border="0">
|
406
|
+
<col align="left" valign="top">
|
407
|
+
<tbody>
|
408
|
+
<tr>
|
409
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
410
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
411
|
+
</td>
|
412
|
+
</tr>
|
413
|
+
<tr>
|
414
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
415
|
+
<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>
|
416
|
+
</td>
|
417
|
+
</tr>
|
418
|
+
</tbody>
|
419
|
+
</table></div>
|
420
|
+
<p class="since">Since 2.18</p>
|
421
|
+
</div>
|
422
|
+
<hr>
|
423
|
+
<div class="refsect2">
|
424
|
+
<a name="gtk-entry-set-buffer"></a><h3>gtk_entry_set_buffer ()</h3>
|
425
|
+
<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>,
|
426
|
+
<em class="parameter"><code><a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> *buffer</code></em>);</pre>
|
427
|
+
<p>
|
428
|
+
Set the <a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> object which holds the text for
|
429
|
+
this widget.
|
430
|
+
</p>
|
431
|
+
<div class="variablelist"><table border="0">
|
432
|
+
<col align="left" valign="top">
|
433
|
+
<tbody>
|
434
|
+
<tr>
|
435
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
436
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
437
|
+
</td>
|
438
|
+
</tr>
|
439
|
+
<tr>
|
440
|
+
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
441
|
+
<td>a <a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a>
|
442
|
+
</td>
|
443
|
+
</tr>
|
444
|
+
</tbody>
|
445
|
+
</table></div>
|
446
|
+
<p class="since">Since 2.18</p>
|
447
|
+
</div>
|
448
|
+
<hr>
|
449
|
+
<div class="refsect2">
|
450
|
+
<a name="gtk-entry-set-text"></a><h3>gtk_entry_set_text ()</h3>
|
451
|
+
<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>,
|
452
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
|
453
|
+
<p>
|
454
|
+
Sets the text in the widget to the given
|
455
|
+
value, replacing the current contents.
|
456
|
+
</p>
|
457
|
+
<p>
|
458
|
+
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>.
|
459
|
+
</p>
|
460
|
+
<div class="variablelist"><table border="0">
|
461
|
+
<col align="left" valign="top">
|
462
|
+
<tbody>
|
463
|
+
<tr>
|
464
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
465
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
466
|
+
</td>
|
467
|
+
</tr>
|
468
|
+
<tr>
|
469
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
470
|
+
<td>the new text</td>
|
471
|
+
</tr>
|
472
|
+
</tbody>
|
473
|
+
</table></div>
|
474
|
+
</div>
|
475
|
+
<hr>
|
476
|
+
<div class="refsect2">
|
477
|
+
<a name="gtk-entry-append-text"></a><h3>gtk_entry_append_text ()</h3>
|
478
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_append_text (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
479
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
|
480
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
481
|
+
<h3 class="title">Warning</h3>
|
482
|
+
<p><code class="literal">gtk_entry_append_text</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a class="link" href="GtkEditable.html#gtk-editable-insert-text" title="gtk_editable_insert_text ()"><code class="function">gtk_editable_insert_text()</code></a> instead.</p>
|
483
|
+
</div>
|
484
|
+
<p>
|
485
|
+
Appends the given text to the contents of the widget.
|
486
|
+
</p>
|
487
|
+
<div class="variablelist"><table border="0">
|
488
|
+
<col align="left" valign="top">
|
489
|
+
<tbody>
|
490
|
+
<tr>
|
491
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
492
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
493
|
+
</td>
|
494
|
+
</tr>
|
495
|
+
<tr>
|
496
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
497
|
+
<td>the text to append</td>
|
498
|
+
</tr>
|
499
|
+
</tbody>
|
500
|
+
</table></div>
|
501
|
+
</div>
|
502
|
+
<hr>
|
503
|
+
<div class="refsect2">
|
504
|
+
<a name="gtk-entry-prepend-text"></a><h3>gtk_entry_prepend_text ()</h3>
|
505
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_prepend_text (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
506
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
|
507
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
508
|
+
<h3 class="title">Warning</h3>
|
509
|
+
<p><code class="literal">gtk_entry_prepend_text</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a class="link" href="GtkEditable.html#gtk-editable-insert-text" title="gtk_editable_insert_text ()"><code class="function">gtk_editable_insert_text()</code></a> instead.</p>
|
510
|
+
</div>
|
511
|
+
<p>
|
512
|
+
Prepends the given text to the contents of the widget.
|
513
|
+
</p>
|
514
|
+
<div class="variablelist"><table border="0">
|
515
|
+
<col align="left" valign="top">
|
516
|
+
<tbody>
|
517
|
+
<tr>
|
518
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
519
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
520
|
+
</td>
|
521
|
+
</tr>
|
522
|
+
<tr>
|
523
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
524
|
+
<td>the text to prepend</td>
|
525
|
+
</tr>
|
526
|
+
</tbody>
|
527
|
+
</table></div>
|
528
|
+
</div>
|
529
|
+
<hr>
|
530
|
+
<div class="refsect2">
|
531
|
+
<a name="gtk-entry-set-position"></a><h3>gtk_entry_set_position ()</h3>
|
532
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_position (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
533
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);</pre>
|
534
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
535
|
+
<h3 class="title">Warning</h3>
|
536
|
+
<p><code class="literal">gtk_entry_set_position</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a class="link" href="GtkEditable.html#gtk-editable-set-position" title="gtk_editable_set_position ()"><code class="function">gtk_editable_set_position()</code></a> instead.</p>
|
537
|
+
</div>
|
538
|
+
<p>
|
539
|
+
Sets the cursor position in an entry to the given value.
|
540
|
+
</p>
|
541
|
+
<div class="variablelist"><table border="0">
|
542
|
+
<col align="left" valign="top">
|
543
|
+
<tbody>
|
544
|
+
<tr>
|
545
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
546
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
547
|
+
</td>
|
548
|
+
</tr>
|
549
|
+
<tr>
|
550
|
+
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
551
|
+
<td>the position of the cursor. The cursor is displayed
|
552
|
+
before the character with the given (base 0) index in the widget.
|
553
|
+
The value must be less than or equal to the number of characters
|
554
|
+
in the widget. A value of -1 indicates that the position should
|
555
|
+
be set after the last character in the entry. Note that this
|
556
|
+
position is in characters, not in bytes.</td>
|
557
|
+
</tr>
|
558
|
+
</tbody>
|
559
|
+
</table></div>
|
560
|
+
</div>
|
561
|
+
<hr>
|
562
|
+
<div class="refsect2">
|
563
|
+
<a name="gtk-entry-get-text"></a><h3>gtk_entry_get_text ()</h3>
|
564
|
+
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * 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>
|
565
|
+
<p>
|
566
|
+
Retrieves the contents of the entry widget.
|
567
|
+
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>.
|
568
|
+
</p>
|
569
|
+
<p>
|
570
|
+
This is equivalent to:
|
571
|
+
</p>
|
572
|
+
<p>
|
573
|
+
</p>
|
574
|
+
<div class="informalexample">
|
575
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
576
|
+
<tbody>
|
577
|
+
<tr>
|
578
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
579
|
+
<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>
|
580
|
+
</tr>
|
581
|
+
</tbody>
|
582
|
+
</table>
|
583
|
+
</div>
|
584
|
+
|
585
|
+
<p>
|
586
|
+
</p>
|
587
|
+
<div class="variablelist"><table border="0">
|
588
|
+
<col align="left" valign="top">
|
589
|
+
<tbody>
|
590
|
+
<tr>
|
591
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
592
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
593
|
+
</td>
|
594
|
+
</tr>
|
595
|
+
<tr>
|
596
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
597
|
+
<td>a pointer to the contents of the widget as a
|
598
|
+
string. This string points to internally allocated
|
599
|
+
storage in the widget and must not be freed, modified or
|
600
|
+
stored.</td>
|
601
|
+
</tr>
|
602
|
+
</tbody>
|
603
|
+
</table></div>
|
604
|
+
</div>
|
605
|
+
<hr>
|
606
|
+
<div class="refsect2">
|
607
|
+
<a name="gtk-entry-get-text-length"></a><h3>gtk_entry_get_text_length ()</h3>
|
608
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> 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>
|
609
|
+
<p>
|
610
|
+
Retrieves the current length of the text in
|
611
|
+
<em class="parameter"><code>entry</code></em>.
|
612
|
+
</p>
|
613
|
+
<p>
|
614
|
+
This is equivalent to:
|
615
|
+
</p>
|
616
|
+
<p>
|
617
|
+
</p>
|
618
|
+
<div class="informalexample">
|
619
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
620
|
+
<tbody>
|
621
|
+
<tr>
|
622
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
623
|
+
<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>
|
624
|
+
</tr>
|
625
|
+
</tbody>
|
626
|
+
</table>
|
627
|
+
</div>
|
628
|
+
|
629
|
+
<p>
|
630
|
+
</p>
|
631
|
+
<div class="variablelist"><table border="0">
|
632
|
+
<col align="left" valign="top">
|
633
|
+
<tbody>
|
634
|
+
<tr>
|
635
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
636
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
637
|
+
</td>
|
638
|
+
</tr>
|
639
|
+
<tr>
|
640
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
641
|
+
<td>the current number of characters
|
642
|
+
in <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>, or 0 if there are none.</td>
|
643
|
+
</tr>
|
644
|
+
</tbody>
|
645
|
+
</table></div>
|
646
|
+
<p class="since">Since 2.14</p>
|
647
|
+
</div>
|
648
|
+
<hr>
|
649
|
+
<div class="refsect2">
|
650
|
+
<a name="gtk-entry-select-region"></a><h3>gtk_entry_select_region ()</h3>
|
651
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_select_region (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
652
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> start</code></em>,
|
653
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> end</code></em>);</pre>
|
654
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
655
|
+
<h3 class="title">Warning</h3>
|
656
|
+
<p><code class="literal">gtk_entry_select_region</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a class="link" href="GtkEditable.html#gtk-editable-select-region" title="gtk_editable_select_region ()"><code class="function">gtk_editable_select_region()</code></a> instead.</p>
|
657
|
+
</div>
|
658
|
+
<p>
|
659
|
+
Selects a region of text. The characters that are selected are
|
660
|
+
those characters at positions from <em class="parameter"><code>start_pos</code></em> up to, but not
|
661
|
+
including <em class="parameter"><code>end_pos</code></em>. If <em class="parameter"><code>end_pos</code></em> is negative, then the the characters
|
662
|
+
selected will be those characters from <em class="parameter"><code>start_pos</code></em> to the end of
|
663
|
+
the text.
|
664
|
+
</p>
|
665
|
+
<div class="variablelist"><table border="0">
|
666
|
+
<col align="left" valign="top">
|
667
|
+
<tbody>
|
668
|
+
<tr>
|
669
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
670
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
671
|
+
</td>
|
672
|
+
</tr>
|
673
|
+
<tr>
|
674
|
+
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
675
|
+
<td>the starting position</td>
|
676
|
+
</tr>
|
677
|
+
<tr>
|
678
|
+
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
679
|
+
<td>the end position</td>
|
680
|
+
</tr>
|
681
|
+
</tbody>
|
682
|
+
</table></div>
|
683
|
+
</div>
|
684
|
+
<hr>
|
685
|
+
<div class="refsect2">
|
686
|
+
<a name="gtk-entry-set-visibility"></a><h3>gtk_entry_set_visibility ()</h3>
|
687
|
+
<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>,
|
688
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> visible</code></em>);</pre>
|
689
|
+
<p>
|
690
|
+
Sets whether the contents of the entry are visible or not.
|
691
|
+
When visibility is set to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, characters are displayed
|
692
|
+
as the invisible char, and will also appear that way when
|
693
|
+
the text in the entry widget is copied elsewhere.
|
694
|
+
</p>
|
695
|
+
<p>
|
696
|
+
By default, GTK+ picks the best invisible character available
|
697
|
+
in the current font, but it can be changed with
|
698
|
+
<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>.
|
699
|
+
</p>
|
700
|
+
<div class="variablelist"><table border="0">
|
701
|
+
<col align="left" valign="top">
|
702
|
+
<tbody>
|
703
|
+
<tr>
|
704
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
705
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
706
|
+
</td>
|
707
|
+
</tr>
|
708
|
+
<tr>
|
709
|
+
<td><p><span class="term"><em class="parameter"><code>visible</code></em> :</span></p></td>
|
710
|
+
<td>
|
711
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the contents of the entry are displayed
|
712
|
+
as plaintext</td>
|
713
|
+
</tr>
|
714
|
+
</tbody>
|
715
|
+
</table></div>
|
716
|
+
</div>
|
717
|
+
<hr>
|
718
|
+
<div class="refsect2">
|
719
|
+
<a name="gtk-entry-set-invisible-char"></a><h3>gtk_entry_set_invisible_char ()</h3>
|
720
|
+
<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>,
|
721
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Unicode-Manipulation.html#gunichar"><span class="type">gunichar</span></a> ch</code></em>);</pre>
|
722
|
+
<p>
|
723
|
+
Sets the character to use in place of the actual text when
|
724
|
+
<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
|
725
|
+
to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>. i.e. this is the character used in "password mode" to
|
726
|
+
show the user how many characters have been typed. By default, GTK+
|
727
|
+
picks the best invisible char available in the current font. If you
|
728
|
+
set the invisible char to 0, then the user will get no feedback
|
729
|
+
at all; there will be no text on the screen as they type.
|
730
|
+
</p>
|
731
|
+
<div class="variablelist"><table border="0">
|
732
|
+
<col align="left" valign="top">
|
733
|
+
<tbody>
|
734
|
+
<tr>
|
735
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
736
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
737
|
+
</td>
|
738
|
+
</tr>
|
739
|
+
<tr>
|
740
|
+
<td><p><span class="term"><em class="parameter"><code>ch</code></em> :</span></p></td>
|
741
|
+
<td>a Unicode character</td>
|
742
|
+
</tr>
|
743
|
+
</tbody>
|
744
|
+
</table></div>
|
745
|
+
</div>
|
746
|
+
<hr>
|
747
|
+
<div class="refsect2">
|
748
|
+
<a name="gtk-entry-unset-invisible-char"></a><h3>gtk_entry_unset_invisible_char ()</h3>
|
749
|
+
<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>
|
750
|
+
<p>
|
751
|
+
Unsets the invisible char previously set with
|
752
|
+
<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
|
753
|
+
default invisible char is used again.
|
754
|
+
</p>
|
755
|
+
<div class="variablelist"><table border="0">
|
756
|
+
<col align="left" valign="top">
|
757
|
+
<tbody><tr>
|
758
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
759
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
760
|
+
</td>
|
761
|
+
</tr></tbody>
|
762
|
+
</table></div>
|
763
|
+
<p class="since">Since 2.16</p>
|
764
|
+
</div>
|
765
|
+
<hr>
|
766
|
+
<div class="refsect2">
|
767
|
+
<a name="gtk-entry-set-editable"></a><h3>gtk_entry_set_editable ()</h3>
|
768
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_entry_set_editable (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
769
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> editable</code></em>);</pre>
|
770
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
771
|
+
<h3 class="title">Warning</h3>
|
772
|
+
<p><code class="literal">gtk_entry_set_editable</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a class="link" href="GtkEditable.html#gtk-editable-set-editable" title="gtk_editable_set_editable ()"><code class="function">gtk_editable_set_editable()</code></a> instead.</p>
|
773
|
+
</div>
|
774
|
+
<p>
|
775
|
+
Determines if the user can edit the text in the editable
|
776
|
+
widget or not.
|
777
|
+
</p>
|
778
|
+
<div class="variablelist"><table border="0">
|
779
|
+
<col align="left" valign="top">
|
780
|
+
<tbody>
|
781
|
+
<tr>
|
782
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
783
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
784
|
+
</td>
|
785
|
+
</tr>
|
786
|
+
<tr>
|
787
|
+
<td><p><span class="term"><em class="parameter"><code>editable</code></em> :</span></p></td>
|
788
|
+
<td>
|
789
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is allowed to edit the text
|
790
|
+
in the widget</td>
|
791
|
+
</tr>
|
792
|
+
</tbody>
|
793
|
+
</table></div>
|
794
|
+
</div>
|
795
|
+
<hr>
|
796
|
+
<div class="refsect2">
|
797
|
+
<a name="gtk-entry-set-max-length"></a><h3>gtk_entry_set_max_length ()</h3>
|
798
|
+
<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>,
|
799
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> max</code></em>);</pre>
|
800
|
+
<p>
|
801
|
+
Sets the maximum allowed length of the contents of the widget. If
|
802
|
+
the current contents are longer than the given length, then they
|
803
|
+
will be truncated to fit.
|
804
|
+
</p>
|
805
|
+
<p>
|
806
|
+
This is equivalent to:
|
807
|
+
</p>
|
808
|
+
<p>
|
809
|
+
</p>
|
810
|
+
<div class="informalexample">
|
811
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
812
|
+
<tbody>
|
813
|
+
<tr>
|
814
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
815
|
+
<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>
|
816
|
+
</tr>
|
817
|
+
</tbody>
|
818
|
+
</table>
|
819
|
+
</div>
|
820
|
+
|
821
|
+
<p>
|
822
|
+
</p>
|
823
|
+
<div class="variablelist"><table border="0">
|
824
|
+
<col align="left" valign="top">
|
825
|
+
<tbody>
|
826
|
+
<tr>
|
827
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
828
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
829
|
+
</td>
|
830
|
+
</tr>
|
831
|
+
<tr>
|
832
|
+
<td><p><span class="term"><em class="parameter"><code>max</code></em> :</span></p></td>
|
833
|
+
<td>the maximum length of the entry, or 0 for no maximum.
|
834
|
+
(other than the maximum length of entries.) The value passed in will
|
835
|
+
be clamped to the range 0-65536.</td>
|
836
|
+
</tr>
|
837
|
+
</tbody>
|
838
|
+
</table></div>
|
839
|
+
</div>
|
840
|
+
<hr>
|
841
|
+
<div class="refsect2">
|
842
|
+
<a name="gtk-entry-get-activates-default"></a><h3>gtk_entry_get_activates_default ()</h3>
|
843
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>
|
844
|
+
<p>
|
845
|
+
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>.
|
846
|
+
</p>
|
847
|
+
<div class="variablelist"><table border="0">
|
848
|
+
<col align="left" valign="top">
|
849
|
+
<tbody>
|
850
|
+
<tr>
|
851
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
852
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
853
|
+
</td>
|
854
|
+
</tr>
|
855
|
+
<tr>
|
856
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
857
|
+
<td>
|
858
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the entry will activate the default widget</td>
|
859
|
+
</tr>
|
860
|
+
</tbody>
|
861
|
+
</table></div>
|
862
|
+
</div>
|
863
|
+
<hr>
|
864
|
+
<div class="refsect2">
|
865
|
+
<a name="gtk-entry-get-has-frame"></a><h3>gtk_entry_get_has_frame ()</h3>
|
866
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>
|
867
|
+
<p>
|
868
|
+
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>.
|
869
|
+
</p>
|
870
|
+
<div class="variablelist"><table border="0">
|
871
|
+
<col align="left" valign="top">
|
872
|
+
<tbody>
|
873
|
+
<tr>
|
874
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
875
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
876
|
+
</td>
|
877
|
+
</tr>
|
878
|
+
<tr>
|
879
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
880
|
+
<td>whether the entry has a beveled frame</td>
|
881
|
+
</tr>
|
882
|
+
</tbody>
|
883
|
+
</table></div>
|
884
|
+
</div>
|
885
|
+
<hr>
|
886
|
+
<div class="refsect2">
|
887
|
+
<a name="gtk-entry-get-inner-border"></a><h3>gtk_entry_get_inner_border ()</h3>
|
888
|
+
<pre class="programlisting">const <a class="link" href="GtkStyle.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>
|
889
|
+
<p>
|
890
|
+
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
|
891
|
+
<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.
|
892
|
+
</p>
|
893
|
+
<div class="variablelist"><table border="0">
|
894
|
+
<col align="left" valign="top">
|
895
|
+
<tbody>
|
896
|
+
<tr>
|
897
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
898
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
899
|
+
</td>
|
900
|
+
</tr>
|
901
|
+
<tr>
|
902
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
903
|
+
<td>the entry's <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
|
904
|
+
</td>
|
905
|
+
</tr>
|
906
|
+
</tbody>
|
907
|
+
</table></div>
|
908
|
+
<p class="since">Since 2.10</p>
|
909
|
+
</div>
|
910
|
+
<hr>
|
911
|
+
<div class="refsect2">
|
912
|
+
<a name="gtk-entry-get-width-chars"></a><h3>gtk_entry_get_width_chars ()</h3>
|
913
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
|
914
|
+
<p>
|
915
|
+
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>.
|
916
|
+
</p>
|
917
|
+
<div class="variablelist"><table border="0">
|
918
|
+
<col align="left" valign="top">
|
919
|
+
<tbody>
|
920
|
+
<tr>
|
921
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
922
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
923
|
+
</td>
|
924
|
+
</tr>
|
925
|
+
<tr>
|
926
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
927
|
+
<td>number of chars to request space for, or negative if unset</td>
|
928
|
+
</tr>
|
929
|
+
</tbody>
|
930
|
+
</table></div>
|
931
|
+
</div>
|
932
|
+
<hr>
|
933
|
+
<div class="refsect2">
|
934
|
+
<a name="gtk-entry-set-activates-default"></a><h3>gtk_entry_set_activates_default ()</h3>
|
935
|
+
<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>,
|
936
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
|
937
|
+
<p>
|
938
|
+
If <em class="parameter"><code>setting</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, pressing Enter in the <em class="parameter"><code>entry</code></em> will activate the default
|
939
|
+
widget for the window containing the entry. This usually means that
|
940
|
+
the dialog box containing the entry will be closed, since the default
|
941
|
+
widget is usually one of the dialog buttons.
|
942
|
+
</p>
|
943
|
+
<p>
|
944
|
+
(For experts: if <em class="parameter"><code>setting</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the entry calls
|
945
|
+
<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
|
946
|
+
the default handler for the <span class="type">"activate"</span> signal.)
|
947
|
+
</p>
|
948
|
+
<div class="variablelist"><table border="0">
|
949
|
+
<col align="left" valign="top">
|
950
|
+
<tbody>
|
951
|
+
<tr>
|
952
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
953
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
954
|
+
</td>
|
955
|
+
</tr>
|
956
|
+
<tr>
|
957
|
+
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
958
|
+
<td>
|
959
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to activate window's default widget on Enter keypress</td>
|
960
|
+
</tr>
|
961
|
+
</tbody>
|
962
|
+
</table></div>
|
963
|
+
</div>
|
964
|
+
<hr>
|
965
|
+
<div class="refsect2">
|
966
|
+
<a name="gtk-entry-set-has-frame"></a><h3>gtk_entry_set_has_frame ()</h3>
|
967
|
+
<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>,
|
968
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
|
969
|
+
<p>
|
970
|
+
Sets whether the entry has a beveled frame around it.
|
971
|
+
</p>
|
972
|
+
<div class="variablelist"><table border="0">
|
973
|
+
<col align="left" valign="top">
|
974
|
+
<tbody>
|
975
|
+
<tr>
|
976
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
977
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
978
|
+
</td>
|
979
|
+
</tr>
|
980
|
+
<tr>
|
981
|
+
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
982
|
+
<td>new value</td>
|
983
|
+
</tr>
|
984
|
+
</tbody>
|
985
|
+
</table></div>
|
986
|
+
</div>
|
987
|
+
<hr>
|
988
|
+
<div class="refsect2">
|
989
|
+
<a name="gtk-entry-set-inner-border"></a><h3>gtk_entry_set_inner_border ()</h3>
|
990
|
+
<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>,
|
991
|
+
<em class="parameter"><code>const <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a> *border</code></em>);</pre>
|
992
|
+
<p>
|
993
|
+
Sets <code class="literal">entry</code>'s inner-border property to <code class="literal">border</code>, or clears it if <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
994
|
+
is passed. The inner-border is the area around the entry's text, but
|
995
|
+
inside its frame.
|
996
|
+
</p>
|
997
|
+
<p>
|
998
|
+
If set, this property overrides the inner-border style property.
|
999
|
+
Overriding the style-provided border is useful when you want to do
|
1000
|
+
in-place editing of some text in a canvas or list widget, where
|
1001
|
+
pixel-exact positioning of the entry is important.
|
1002
|
+
</p>
|
1003
|
+
<div class="variablelist"><table border="0">
|
1004
|
+
<col align="left" valign="top">
|
1005
|
+
<tbody>
|
1006
|
+
<tr>
|
1007
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1008
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1009
|
+
</td>
|
1010
|
+
</tr>
|
1011
|
+
<tr>
|
1012
|
+
<td><p><span class="term"><em class="parameter"><code>border</code></em> :</span></p></td>
|
1013
|
+
<td>a <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
|
1014
|
+
</td>
|
1015
|
+
</tr>
|
1016
|
+
</tbody>
|
1017
|
+
</table></div>
|
1018
|
+
<p class="since">Since 2.10</p>
|
1019
|
+
</div>
|
1020
|
+
<hr>
|
1021
|
+
<div class="refsect2">
|
1022
|
+
<a name="gtk-entry-set-width-chars"></a><h3>gtk_entry_set_width_chars ()</h3>
|
1023
|
+
<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>,
|
1024
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_chars</code></em>);</pre>
|
1025
|
+
<p>
|
1026
|
+
Changes the size request of the entry to be about the right size
|
1027
|
+
for <em class="parameter"><code>n_chars</code></em> characters. Note that it changes the size
|
1028
|
+
<span class="emphasis"><em>request</em></span>, the size can still be affected by
|
1029
|
+
how you pack the widget into containers. If <em class="parameter"><code>n_chars</code></em> is -1, the
|
1030
|
+
size reverts to the default entry size.
|
1031
|
+
</p>
|
1032
|
+
<div class="variablelist"><table border="0">
|
1033
|
+
<col align="left" valign="top">
|
1034
|
+
<tbody>
|
1035
|
+
<tr>
|
1036
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1037
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1038
|
+
</td>
|
1039
|
+
</tr>
|
1040
|
+
<tr>
|
1041
|
+
<td><p><span class="term"><em class="parameter"><code>n_chars</code></em> :</span></p></td>
|
1042
|
+
<td>width in chars</td>
|
1043
|
+
</tr>
|
1044
|
+
</tbody>
|
1045
|
+
</table></div>
|
1046
|
+
</div>
|
1047
|
+
<hr>
|
1048
|
+
<div class="refsect2">
|
1049
|
+
<a name="gtk-entry-get-invisible-char"></a><h3>gtk_entry_get_invisible_char ()</h3>
|
1050
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Unicode-Manipulation.html#gunichar"><span class="returnvalue">gunichar</span></a> 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>
|
1051
|
+
<p>
|
1052
|
+
Retrieves the character displayed in place of the real characters
|
1053
|
+
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>.
|
1054
|
+
</p>
|
1055
|
+
<div class="variablelist"><table border="0">
|
1056
|
+
<col align="left" valign="top">
|
1057
|
+
<tbody>
|
1058
|
+
<tr>
|
1059
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1060
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1061
|
+
</td>
|
1062
|
+
</tr>
|
1063
|
+
<tr>
|
1064
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1065
|
+
<td>the current invisible char, or 0, if the entry does not
|
1066
|
+
show invisible text at all.</td>
|
1067
|
+
</tr>
|
1068
|
+
</tbody>
|
1069
|
+
</table></div>
|
1070
|
+
</div>
|
1071
|
+
<hr>
|
1072
|
+
<div class="refsect2">
|
1073
|
+
<a name="gtk-entry-set-alignment"></a><h3>gtk_entry_set_alignment ()</h3>
|
1074
|
+
<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>,
|
1075
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> xalign</code></em>);</pre>
|
1076
|
+
<p>
|
1077
|
+
Sets the alignment for the contents of the entry. This controls
|
1078
|
+
the horizontal positioning of the contents when the displayed
|
1079
|
+
text is shorter than the width of the entry.
|
1080
|
+
</p>
|
1081
|
+
<div class="variablelist"><table border="0">
|
1082
|
+
<col align="left" valign="top">
|
1083
|
+
<tbody>
|
1084
|
+
<tr>
|
1085
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1086
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1087
|
+
</td>
|
1088
|
+
</tr>
|
1089
|
+
<tr>
|
1090
|
+
<td><p><span class="term"><em class="parameter"><code>xalign</code></em> :</span></p></td>
|
1091
|
+
<td>The horizontal alignment, from 0 (left) to 1 (right).
|
1092
|
+
Reversed for RTL layouts</td>
|
1093
|
+
</tr>
|
1094
|
+
</tbody>
|
1095
|
+
</table></div>
|
1096
|
+
<p class="since">Since 2.4</p>
|
1097
|
+
</div>
|
1098
|
+
<hr>
|
1099
|
+
<div class="refsect2">
|
1100
|
+
<a name="gtk-entry-get-alignment"></a><h3>gtk_entry_get_alignment ()</h3>
|
1101
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="returnvalue">gfloat</span></a> 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>
|
1102
|
+
<p>
|
1103
|
+
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>.
|
1104
|
+
</p>
|
1105
|
+
<div class="variablelist"><table border="0">
|
1106
|
+
<col align="left" valign="top">
|
1107
|
+
<tbody>
|
1108
|
+
<tr>
|
1109
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1110
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1111
|
+
</td>
|
1112
|
+
</tr>
|
1113
|
+
<tr>
|
1114
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1115
|
+
<td>the alignment</td>
|
1116
|
+
</tr>
|
1117
|
+
</tbody>
|
1118
|
+
</table></div>
|
1119
|
+
<p class="since">Since 2.4</p>
|
1120
|
+
</div>
|
1121
|
+
<hr>
|
1122
|
+
<div class="refsect2">
|
1123
|
+
<a name="gtk-entry-set-overwrite-mode"></a><h3>gtk_entry_set_overwrite_mode ()</h3>
|
1124
|
+
<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>,
|
1125
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> overwrite</code></em>);</pre>
|
1126
|
+
<p>
|
1127
|
+
Sets whether the text is overwritten when typing in the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.
|
1128
|
+
</p>
|
1129
|
+
<div class="variablelist"><table border="0">
|
1130
|
+
<col align="left" valign="top">
|
1131
|
+
<tbody>
|
1132
|
+
<tr>
|
1133
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1134
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1135
|
+
</td>
|
1136
|
+
</tr>
|
1137
|
+
<tr>
|
1138
|
+
<td><p><span class="term"><em class="parameter"><code>overwrite</code></em> :</span></p></td>
|
1139
|
+
<td>new value</td>
|
1140
|
+
</tr>
|
1141
|
+
</tbody>
|
1142
|
+
</table></div>
|
1143
|
+
<p class="since">Since 2.14</p>
|
1144
|
+
</div>
|
1145
|
+
<hr>
|
1146
|
+
<div class="refsect2">
|
1147
|
+
<a name="gtk-entry-get-overwrite-mode"></a><h3>gtk_entry_get_overwrite_mode ()</h3>
|
1148
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>
|
1149
|
+
<p>
|
1150
|
+
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>.
|
1151
|
+
</p>
|
1152
|
+
<div class="variablelist"><table border="0">
|
1153
|
+
<col align="left" valign="top">
|
1154
|
+
<tbody>
|
1155
|
+
<tr>
|
1156
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1157
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1158
|
+
</td>
|
1159
|
+
</tr>
|
1160
|
+
<tr>
|
1161
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1162
|
+
<td>whether the text is overwritten when typing.</td>
|
1163
|
+
</tr>
|
1164
|
+
</tbody>
|
1165
|
+
</table></div>
|
1166
|
+
<p class="since">Since 2.14</p>
|
1167
|
+
</div>
|
1168
|
+
<hr>
|
1169
|
+
<div class="refsect2">
|
1170
|
+
<a name="gtk-entry-get-layout"></a><h3>gtk_entry_get_layout ()</h3>
|
1171
|
+
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="returnvalue">PangoLayout</span></a> * 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>
|
1172
|
+
<p>
|
1173
|
+
Gets the <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> used to display the entry.
|
1174
|
+
The layout is useful to e.g. convert text positions to
|
1175
|
+
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>.
|
1176
|
+
The returned layout is owned by the entry and must not be
|
1177
|
+
modified or freed by the caller.
|
1178
|
+
</p>
|
1179
|
+
<p>
|
1180
|
+
Keep in mind that the layout text may contain a preedit string, so
|
1181
|
+
<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
|
1182
|
+
<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
|
1183
|
+
indices in the layout to byte indices in the entry contents.
|
1184
|
+
</p>
|
1185
|
+
<div class="variablelist"><table border="0">
|
1186
|
+
<col align="left" valign="top">
|
1187
|
+
<tbody>
|
1188
|
+
<tr>
|
1189
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1190
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1191
|
+
</td>
|
1192
|
+
</tr>
|
1193
|
+
<tr>
|
1194
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1195
|
+
<td>the <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> 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>
|
1196
|
+
</td>
|
1197
|
+
</tr>
|
1198
|
+
</tbody>
|
1199
|
+
</table></div>
|
1200
|
+
</div>
|
1201
|
+
<hr>
|
1202
|
+
<div class="refsect2">
|
1203
|
+
<a name="gtk-entry-get-layout-offsets"></a><h3>gtk_entry_get_layout_offsets ()</h3>
|
1204
|
+
<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>,
|
1205
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
|
1206
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>);</pre>
|
1207
|
+
<p>
|
1208
|
+
Obtains the position of the <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> used to render text
|
1209
|
+
in the entry, in widget coordinates. Useful if you want to line
|
1210
|
+
up the text in an entry with some other text, e.g. when using the
|
1211
|
+
entry to implement editable cells in a sheet widget.
|
1212
|
+
</p>
|
1213
|
+
<p>
|
1214
|
+
Also useful to convert mouse events into coordinates inside the
|
1215
|
+
<a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a>, e.g. to take some action if some part of the entry text
|
1216
|
+
is clicked.
|
1217
|
+
</p>
|
1218
|
+
<p>
|
1219
|
+
Note that as the user scrolls around in the entry the offsets will
|
1220
|
+
change; you'll need to connect to the "notify::scroll-offset"
|
1221
|
+
signal to track this. Remember when using the <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a>
|
1222
|
+
functions you need to convert to and from pixels using
|
1223
|
+
<a href="/usr/share/gtk-doc/html/pango/pango-Glyph-Storage.html#PANGO-PIXELS:CAPS"><code class="function">PANGO_PIXELS()</code></a> or <a href="/usr/share/gtk-doc/html/pango/pango-Glyph-Storage.html#PANGO-SCALE:CAPS"><span class="type">PANGO_SCALE</span></a>.
|
1224
|
+
</p>
|
1225
|
+
<p>
|
1226
|
+
Keep in mind that the layout text may contain a preedit string, so
|
1227
|
+
<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
|
1228
|
+
<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
|
1229
|
+
indices in the layout to byte indices in the entry contents.
|
1230
|
+
</p>
|
1231
|
+
<div class="variablelist"><table border="0">
|
1232
|
+
<col align="left" valign="top">
|
1233
|
+
<tbody>
|
1234
|
+
<tr>
|
1235
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1236
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1237
|
+
</td>
|
1238
|
+
</tr>
|
1239
|
+
<tr>
|
1240
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
1241
|
+
<td>location to store X offset of layout, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
|
1242
|
+
</td>
|
1243
|
+
</tr>
|
1244
|
+
<tr>
|
1245
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
1246
|
+
<td>location to store Y offset of layout, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
|
1247
|
+
</td>
|
1248
|
+
</tr>
|
1249
|
+
</tbody>
|
1250
|
+
</table></div>
|
1251
|
+
</div>
|
1252
|
+
<hr>
|
1253
|
+
<div class="refsect2">
|
1254
|
+
<a name="gtk-entry-layout-index-to-text-index"></a><h3>gtk_entry_layout_index_to_text_index ()</h3>
|
1255
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_entry_layout_index_to_text_index
|
1256
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1257
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> layout_index</code></em>);</pre>
|
1258
|
+
<p>
|
1259
|
+
Converts from a position in the entry contents (returned
|
1260
|
+
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
|
1261
|
+
entry's <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> (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>,
|
1262
|
+
with text retrieved via <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#pango-layout-get-text"><code class="function">pango_layout_get_text()</code></a>).
|
1263
|
+
</p>
|
1264
|
+
<div class="variablelist"><table border="0">
|
1265
|
+
<col align="left" valign="top">
|
1266
|
+
<tbody>
|
1267
|
+
<tr>
|
1268
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1269
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1270
|
+
</td>
|
1271
|
+
</tr>
|
1272
|
+
<tr>
|
1273
|
+
<td><p><span class="term"><em class="parameter"><code>layout_index</code></em> :</span></p></td>
|
1274
|
+
<td>byte index into the entry layout text</td>
|
1275
|
+
</tr>
|
1276
|
+
<tr>
|
1277
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1278
|
+
<td>byte index into the entry contents</td>
|
1279
|
+
</tr>
|
1280
|
+
</tbody>
|
1281
|
+
</table></div>
|
1282
|
+
</div>
|
1283
|
+
<hr>
|
1284
|
+
<div class="refsect2">
|
1285
|
+
<a name="gtk-entry-text-index-to-layout-index"></a><h3>gtk_entry_text_index_to_layout_index ()</h3>
|
1286
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_entry_text_index_to_layout_index
|
1287
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1288
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> text_index</code></em>);</pre>
|
1289
|
+
<p>
|
1290
|
+
Converts from a position in the entry's <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> (returned by
|
1291
|
+
<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
|
1292
|
+
(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>).
|
1293
|
+
</p>
|
1294
|
+
<div class="variablelist"><table border="0">
|
1295
|
+
<col align="left" valign="top">
|
1296
|
+
<tbody>
|
1297
|
+
<tr>
|
1298
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1299
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1300
|
+
</td>
|
1301
|
+
</tr>
|
1302
|
+
<tr>
|
1303
|
+
<td><p><span class="term"><em class="parameter"><code>text_index</code></em> :</span></p></td>
|
1304
|
+
<td>byte index into the entry contents</td>
|
1305
|
+
</tr>
|
1306
|
+
<tr>
|
1307
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1308
|
+
<td>byte index into the entry layout text</td>
|
1309
|
+
</tr>
|
1310
|
+
</tbody>
|
1311
|
+
</table></div>
|
1312
|
+
</div>
|
1313
|
+
<hr>
|
1314
|
+
<div class="refsect2">
|
1315
|
+
<a name="gtk-entry-get-max-length"></a><h3>gtk_entry_get_max_length ()</h3>
|
1316
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>
|
1317
|
+
<p>
|
1318
|
+
Retrieves the maximum allowed length of the text in
|
1319
|
+
<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>.
|
1320
|
+
</p>
|
1321
|
+
<p>
|
1322
|
+
This is equivalent to:
|
1323
|
+
</p>
|
1324
|
+
<p>
|
1325
|
+
</p>
|
1326
|
+
<div class="informalexample">
|
1327
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
1328
|
+
<tbody>
|
1329
|
+
<tr>
|
1330
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
1331
|
+
<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>
|
1332
|
+
</tr>
|
1333
|
+
</tbody>
|
1334
|
+
</table>
|
1335
|
+
</div>
|
1336
|
+
|
1337
|
+
<p>
|
1338
|
+
</p>
|
1339
|
+
<div class="variablelist"><table border="0">
|
1340
|
+
<col align="left" valign="top">
|
1341
|
+
<tbody>
|
1342
|
+
<tr>
|
1343
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1344
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1345
|
+
</td>
|
1346
|
+
</tr>
|
1347
|
+
<tr>
|
1348
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1349
|
+
<td>the maximum allowed number of characters
|
1350
|
+
in <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>, or 0 if there is no maximum.</td>
|
1351
|
+
</tr>
|
1352
|
+
</tbody>
|
1353
|
+
</table></div>
|
1354
|
+
</div>
|
1355
|
+
<hr>
|
1356
|
+
<div class="refsect2">
|
1357
|
+
<a name="gtk-entry-get-visibility"></a><h3>gtk_entry_get_visibility ()</h3>
|
1358
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>
|
1359
|
+
<p>
|
1360
|
+
Retrieves whether the text in <em class="parameter"><code>entry</code></em> is visible. See
|
1361
|
+
<a class="link" href="GtkEntry.html#gtk-entry-set-visibility" title="gtk_entry_set_visibility ()"><code class="function">gtk_entry_set_visibility()</code></a>.
|
1362
|
+
</p>
|
1363
|
+
<div class="variablelist"><table border="0">
|
1364
|
+
<col align="left" valign="top">
|
1365
|
+
<tbody>
|
1366
|
+
<tr>
|
1367
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1368
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1369
|
+
</td>
|
1370
|
+
</tr>
|
1371
|
+
<tr>
|
1372
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1373
|
+
<td>
|
1374
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the text is currently visible</td>
|
1375
|
+
</tr>
|
1376
|
+
</tbody>
|
1377
|
+
</table></div>
|
1378
|
+
</div>
|
1379
|
+
<hr>
|
1380
|
+
<div class="refsect2">
|
1381
|
+
<a name="gtk-entry-set-completion"></a><h3>gtk_entry_set_completion ()</h3>
|
1382
|
+
<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>,
|
1383
|
+
<em class="parameter"><code><a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="type">GtkEntryCompletion</span></a> *completion</code></em>);</pre>
|
1384
|
+
<p>
|
1385
|
+
Sets <em class="parameter"><code>completion</code></em> to be the auxiliary completion object to use with <em class="parameter"><code>entry</code></em>.
|
1386
|
+
All further configuration of the completion mechanism is done on
|
1387
|
+
<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
|
1388
|
+
<em class="parameter"><code>completion</code></em> is set to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
1389
|
+
</p>
|
1390
|
+
<div class="variablelist"><table border="0">
|
1391
|
+
<col align="left" valign="top">
|
1392
|
+
<tbody>
|
1393
|
+
<tr>
|
1394
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1395
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1396
|
+
</td>
|
1397
|
+
</tr>
|
1398
|
+
<tr>
|
1399
|
+
<td><p><span class="term"><em class="parameter"><code>completion</code></em> :</span></p></td>
|
1400
|
+
<td>The <a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="type">GtkEntryCompletion</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
|
1401
|
+
</td>
|
1402
|
+
</tr>
|
1403
|
+
</tbody>
|
1404
|
+
</table></div>
|
1405
|
+
<p class="since">Since 2.4</p>
|
1406
|
+
</div>
|
1407
|
+
<hr>
|
1408
|
+
<div class="refsect2">
|
1409
|
+
<a name="gtk-entry-get-completion"></a><h3>gtk_entry_get_completion ()</h3>
|
1410
|
+
<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>
|
1411
|
+
<p>
|
1412
|
+
Returns the auxiliary completion object currently in use by <em class="parameter"><code>entry</code></em>.
|
1413
|
+
</p>
|
1414
|
+
<div class="variablelist"><table border="0">
|
1415
|
+
<col align="left" valign="top">
|
1416
|
+
<tbody>
|
1417
|
+
<tr>
|
1418
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1419
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1420
|
+
</td>
|
1421
|
+
</tr>
|
1422
|
+
<tr>
|
1423
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1424
|
+
<td>The auxiliary completion object currently
|
1425
|
+
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>
|
1426
|
+
</td>
|
1427
|
+
</tr>
|
1428
|
+
</tbody>
|
1429
|
+
</table></div>
|
1430
|
+
<p class="since">Since 2.4</p>
|
1431
|
+
</div>
|
1432
|
+
<hr>
|
1433
|
+
<div class="refsect2">
|
1434
|
+
<a name="gtk-entry-set-cursor-hadjustment"></a><h3>gtk_entry_set_cursor_hadjustment ()</h3>
|
1435
|
+
<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>,
|
1436
|
+
<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
1437
|
+
<p>
|
1438
|
+
Hooks up an adjustment to the cursor position in an entry, so that when
|
1439
|
+
the cursor is moved, the adjustment is scrolled to show that position.
|
1440
|
+
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
|
1441
|
+
the adjustment.
|
1442
|
+
</p>
|
1443
|
+
<p>
|
1444
|
+
The adjustment has to be in pixel units and in the same coordinate system
|
1445
|
+
as the entry.
|
1446
|
+
</p>
|
1447
|
+
<div class="variablelist"><table border="0">
|
1448
|
+
<col align="left" valign="top">
|
1449
|
+
<tbody>
|
1450
|
+
<tr>
|
1451
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1452
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1453
|
+
</td>
|
1454
|
+
</tr>
|
1455
|
+
<tr>
|
1456
|
+
<td><p><span class="term"><em class="parameter"><code>adjustment</code></em> :</span></p></td>
|
1457
|
+
<td>an adjustment which should be adjusted when the cursor
|
1458
|
+
is moved, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1459
|
+
</td>
|
1460
|
+
</tr>
|
1461
|
+
</tbody>
|
1462
|
+
</table></div>
|
1463
|
+
<p class="since">Since 2.12</p>
|
1464
|
+
</div>
|
1465
|
+
<hr>
|
1466
|
+
<div class="refsect2">
|
1467
|
+
<a name="gtk-entry-get-cursor-hadjustment"></a><h3>gtk_entry_get_cursor_hadjustment ()</h3>
|
1468
|
+
<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>
|
1469
|
+
<p>
|
1470
|
+
Retrieves the horizontal cursor adjustment for the entry.
|
1471
|
+
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>.
|
1472
|
+
</p>
|
1473
|
+
<div class="variablelist"><table border="0">
|
1474
|
+
<col align="left" valign="top">
|
1475
|
+
<tbody>
|
1476
|
+
<tr>
|
1477
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1478
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1479
|
+
</td>
|
1480
|
+
</tr>
|
1481
|
+
<tr>
|
1482
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1483
|
+
<td>the horizontal cursor adjustment, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1484
|
+
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>
|
1485
|
+
</td>
|
1486
|
+
</tr>
|
1487
|
+
</tbody>
|
1488
|
+
</table></div>
|
1489
|
+
<p class="since">Since 2.12</p>
|
1490
|
+
</div>
|
1491
|
+
<hr>
|
1492
|
+
<div class="refsect2">
|
1493
|
+
<a name="gtk-entry-set-progress-fraction"></a><h3>gtk_entry_set_progress_fraction ()</h3>
|
1494
|
+
<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>,
|
1495
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> fraction</code></em>);</pre>
|
1496
|
+
<p>
|
1497
|
+
Causes the entry's progress indicator to "fill in" the given
|
1498
|
+
fraction of the bar. The fraction should be between 0.0 and 1.0,
|
1499
|
+
inclusive.
|
1500
|
+
</p>
|
1501
|
+
<div class="variablelist"><table border="0">
|
1502
|
+
<col align="left" valign="top">
|
1503
|
+
<tbody>
|
1504
|
+
<tr>
|
1505
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1506
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1507
|
+
</td>
|
1508
|
+
</tr>
|
1509
|
+
<tr>
|
1510
|
+
<td><p><span class="term"><em class="parameter"><code>fraction</code></em> :</span></p></td>
|
1511
|
+
<td>fraction of the task that's been completed</td>
|
1512
|
+
</tr>
|
1513
|
+
</tbody>
|
1514
|
+
</table></div>
|
1515
|
+
<p class="since">Since 2.16</p>
|
1516
|
+
</div>
|
1517
|
+
<hr>
|
1518
|
+
<div class="refsect2">
|
1519
|
+
<a name="gtk-entry-get-progress-fraction"></a><h3>gtk_entry_get_progress_fraction ()</h3>
|
1520
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> 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>
|
1521
|
+
<p>
|
1522
|
+
Returns the current fraction of the task that's been completed.
|
1523
|
+
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>.
|
1524
|
+
</p>
|
1525
|
+
<div class="variablelist"><table border="0">
|
1526
|
+
<col align="left" valign="top">
|
1527
|
+
<tbody>
|
1528
|
+
<tr>
|
1529
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1530
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1531
|
+
</td>
|
1532
|
+
</tr>
|
1533
|
+
<tr>
|
1534
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1535
|
+
<td>a fraction from 0.0 to 1.0</td>
|
1536
|
+
</tr>
|
1537
|
+
</tbody>
|
1538
|
+
</table></div>
|
1539
|
+
<p class="since">Since 2.16</p>
|
1540
|
+
</div>
|
1541
|
+
<hr>
|
1542
|
+
<div class="refsect2">
|
1543
|
+
<a name="gtk-entry-set-progress-pulse-step"></a><h3>gtk_entry_set_progress_pulse_step ()</h3>
|
1544
|
+
<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>,
|
1545
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> fraction</code></em>);</pre>
|
1546
|
+
<p>
|
1547
|
+
Sets the fraction of total entry width to move the progress
|
1548
|
+
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>.
|
1549
|
+
</p>
|
1550
|
+
<div class="variablelist"><table border="0">
|
1551
|
+
<col align="left" valign="top">
|
1552
|
+
<tbody>
|
1553
|
+
<tr>
|
1554
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1555
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1556
|
+
</td>
|
1557
|
+
</tr>
|
1558
|
+
<tr>
|
1559
|
+
<td><p><span class="term"><em class="parameter"><code>fraction</code></em> :</span></p></td>
|
1560
|
+
<td>fraction between 0.0 and 1.0</td>
|
1561
|
+
</tr>
|
1562
|
+
</tbody>
|
1563
|
+
</table></div>
|
1564
|
+
<p class="since">Since 2.16</p>
|
1565
|
+
</div>
|
1566
|
+
<hr>
|
1567
|
+
<div class="refsect2">
|
1568
|
+
<a name="gtk-entry-get-progress-pulse-step"></a><h3>gtk_entry_get_progress_pulse_step ()</h3>
|
1569
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> 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>
|
1570
|
+
<p>
|
1571
|
+
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>.
|
1572
|
+
</p>
|
1573
|
+
<div class="variablelist"><table border="0">
|
1574
|
+
<col align="left" valign="top">
|
1575
|
+
<tbody>
|
1576
|
+
<tr>
|
1577
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1578
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1579
|
+
</td>
|
1580
|
+
</tr>
|
1581
|
+
<tr>
|
1582
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1583
|
+
<td>a fraction from 0.0 to 1.0</td>
|
1584
|
+
</tr>
|
1585
|
+
</tbody>
|
1586
|
+
</table></div>
|
1587
|
+
<p class="since">Since 2.16</p>
|
1588
|
+
</div>
|
1589
|
+
<hr>
|
1590
|
+
<div class="refsect2">
|
1591
|
+
<a name="gtk-entry-progress-pulse"></a><h3>gtk_entry_progress_pulse ()</h3>
|
1592
|
+
<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>
|
1593
|
+
<p>
|
1594
|
+
Indicates that some progress is made, but you don't know how much.
|
1595
|
+
Causes the entry's progress indicator to enter "activity mode,"
|
1596
|
+
where a block bounces back and forth. Each call to
|
1597
|
+
<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
|
1598
|
+
(the amount of movement per pulse is determined by
|
1599
|
+
<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>).
|
1600
|
+
</p>
|
1601
|
+
<div class="variablelist"><table border="0">
|
1602
|
+
<col align="left" valign="top">
|
1603
|
+
<tbody><tr>
|
1604
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1605
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1606
|
+
</td>
|
1607
|
+
</tr></tbody>
|
1608
|
+
</table></div>
|
1609
|
+
<p class="since">Since 2.16</p>
|
1610
|
+
</div>
|
1611
|
+
<hr>
|
1612
|
+
<div class="refsect2">
|
1613
|
+
<a name="gtk-entry-im-context-filter-keypress"></a><h3>gtk_entry_im_context_filter_keypress ()</h3>
|
1614
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_entry_im_context_filter_keypress
|
1615
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1616
|
+
<em class="parameter"><code><a href="../gdk/gdk-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>);</pre>
|
1617
|
+
<p>
|
1618
|
+
Allow the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> input method to internally handle key press
|
1619
|
+
and release events. If this function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then no further
|
1620
|
+
processing should be done for this key event. See
|
1621
|
+
<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>.
|
1622
|
+
</p>
|
1623
|
+
<p>
|
1624
|
+
Note that you are expected to call this function from your handler
|
1625
|
+
when overriding key event handling. This is needed in the case when
|
1626
|
+
you need to insert your own key handling between the input method
|
1627
|
+
and the default key event handling of the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.
|
1628
|
+
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.
|
1629
|
+
</p>
|
1630
|
+
<div class="variablelist"><table border="0">
|
1631
|
+
<col align="left" valign="top">
|
1632
|
+
<tbody>
|
1633
|
+
<tr>
|
1634
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1635
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1636
|
+
</td>
|
1637
|
+
</tr>
|
1638
|
+
<tr>
|
1639
|
+
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
1640
|
+
<td>the key event</td>
|
1641
|
+
</tr>
|
1642
|
+
<tr>
|
1643
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1644
|
+
<td>
|
1645
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the input method handled the key event.</td>
|
1646
|
+
</tr>
|
1647
|
+
</tbody>
|
1648
|
+
</table></div>
|
1649
|
+
<p class="since">Since 2.22</p>
|
1650
|
+
</div>
|
1651
|
+
<hr>
|
1652
|
+
<div class="refsect2">
|
1653
|
+
<a name="gtk-entry-reset-im-context"></a><h3>gtk_entry_reset_im_context ()</h3>
|
1654
|
+
<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>
|
1655
|
+
<p>
|
1656
|
+
Reset the input method context of the entry if needed.
|
1657
|
+
</p>
|
1658
|
+
<p>
|
1659
|
+
This can be necessary in the case where modifying the buffer
|
1660
|
+
would confuse on-going input method behavior.
|
1661
|
+
</p>
|
1662
|
+
<div class="variablelist"><table border="0">
|
1663
|
+
<col align="left" valign="top">
|
1664
|
+
<tbody><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></tbody>
|
1669
|
+
</table></div>
|
1670
|
+
<p class="since">Since 2.22</p>
|
1671
|
+
</div>
|
1672
|
+
<hr>
|
1673
|
+
<div class="refsect2">
|
1674
|
+
<a name="GtkEntryIconPosition"></a><h3>enum GtkEntryIconPosition</h3>
|
1675
|
+
<pre class="programlisting">typedef enum {
|
1676
|
+
GTK_ENTRY_ICON_PRIMARY,
|
1677
|
+
GTK_ENTRY_ICON_SECONDARY
|
1678
|
+
} GtkEntryIconPosition;
|
1679
|
+
</pre>
|
1680
|
+
<p>
|
1681
|
+
Specifies the side of the entry at which an icon is placed.
|
1682
|
+
</p>
|
1683
|
+
<div class="variablelist"><table border="0">
|
1684
|
+
<col align="left" valign="top">
|
1685
|
+
<tbody>
|
1686
|
+
<tr>
|
1687
|
+
<td><p><a name="GTK-ENTRY-ICON-PRIMARY:CAPS"></a><span class="term"><code class="literal">GTK_ENTRY_ICON_PRIMARY</code></span></p></td>
|
1688
|
+
<td>At the beginning of the entry (depending on the text direction).
|
1689
|
+
</td>
|
1690
|
+
</tr>
|
1691
|
+
<tr>
|
1692
|
+
<td><p><a name="GTK-ENTRY-ICON-SECONDARY:CAPS"></a><span class="term"><code class="literal">GTK_ENTRY_ICON_SECONDARY</code></span></p></td>
|
1693
|
+
<td>At the end of the entry (depending on the text direction).
|
1694
|
+
</td>
|
1695
|
+
</tr>
|
1696
|
+
</tbody>
|
1697
|
+
</table></div>
|
1698
|
+
<p class="since">Since 2.16</p>
|
1699
|
+
</div>
|
1700
|
+
<hr>
|
1701
|
+
<div class="refsect2">
|
1702
|
+
<a name="gtk-entry-set-icon-from-pixbuf"></a><h3>gtk_entry_set_icon_from_pixbuf ()</h3>
|
1703
|
+
<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>,
|
1704
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
1705
|
+
<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>
|
1706
|
+
<p>
|
1707
|
+
Sets the icon shown in the specified position using a pixbuf.
|
1708
|
+
</p>
|
1709
|
+
<p>
|
1710
|
+
If <em class="parameter"><code>pixbuf</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, no icon will be shown in the specified position.
|
1711
|
+
</p>
|
1712
|
+
<div class="variablelist"><table border="0">
|
1713
|
+
<col align="left" valign="top">
|
1714
|
+
<tbody>
|
1715
|
+
<tr>
|
1716
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1717
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1718
|
+
</td>
|
1719
|
+
</tr>
|
1720
|
+
<tr>
|
1721
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1722
|
+
<td>Icon position</td>
|
1723
|
+
</tr>
|
1724
|
+
<tr>
|
1725
|
+
<td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
|
1726
|
+
<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="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
|
1727
|
+
</td>
|
1728
|
+
</tr>
|
1729
|
+
</tbody>
|
1730
|
+
</table></div>
|
1731
|
+
<p class="since">Since 2.16</p>
|
1732
|
+
</div>
|
1733
|
+
<hr>
|
1734
|
+
<div class="refsect2">
|
1735
|
+
<a name="gtk-entry-set-icon-from-stock"></a><h3>gtk_entry_set_icon_from_stock ()</h3>
|
1736
|
+
<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>,
|
1737
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
1738
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>);</pre>
|
1739
|
+
<p>
|
1740
|
+
Sets the icon shown in the entry at the specified position from
|
1741
|
+
a stock image.
|
1742
|
+
</p>
|
1743
|
+
<p>
|
1744
|
+
If <em class="parameter"><code>stock_id</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, no icon will be shown in the specified position.
|
1745
|
+
</p>
|
1746
|
+
<div class="variablelist"><table border="0">
|
1747
|
+
<col align="left" valign="top">
|
1748
|
+
<tbody>
|
1749
|
+
<tr>
|
1750
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1751
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1752
|
+
</td>
|
1753
|
+
</tr>
|
1754
|
+
<tr>
|
1755
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1756
|
+
<td>Icon position</td>
|
1757
|
+
</tr>
|
1758
|
+
<tr>
|
1759
|
+
<td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
|
1760
|
+
<td>The name of the stock item, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
|
1761
|
+
</td>
|
1762
|
+
</tr>
|
1763
|
+
</tbody>
|
1764
|
+
</table></div>
|
1765
|
+
<p class="since">Since 2.16</p>
|
1766
|
+
</div>
|
1767
|
+
<hr>
|
1768
|
+
<div class="refsect2">
|
1769
|
+
<a name="gtk-entry-set-icon-from-icon-name"></a><h3>gtk_entry_set_icon_from_icon_name ()</h3>
|
1770
|
+
<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>,
|
1771
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
1772
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>);</pre>
|
1773
|
+
<p>
|
1774
|
+
Sets the icon shown in the entry at the specified position
|
1775
|
+
from the current icon theme.
|
1776
|
+
</p>
|
1777
|
+
<p>
|
1778
|
+
If the icon name isn't known, a "broken image" icon will be displayed
|
1779
|
+
instead.
|
1780
|
+
</p>
|
1781
|
+
<p>
|
1782
|
+
If <em class="parameter"><code>icon_name</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, no icon will be shown in the specified position.
|
1783
|
+
</p>
|
1784
|
+
<div class="variablelist"><table border="0">
|
1785
|
+
<col align="left" valign="top">
|
1786
|
+
<tbody>
|
1787
|
+
<tr>
|
1788
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1789
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1790
|
+
</td>
|
1791
|
+
</tr>
|
1792
|
+
<tr>
|
1793
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1794
|
+
<td>The position at which to set the icon</td>
|
1795
|
+
</tr>
|
1796
|
+
<tr>
|
1797
|
+
<td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
|
1798
|
+
<td>An icon name, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
|
1799
|
+
</td>
|
1800
|
+
</tr>
|
1801
|
+
</tbody>
|
1802
|
+
</table></div>
|
1803
|
+
<p class="since">Since 2.16</p>
|
1804
|
+
</div>
|
1805
|
+
<hr>
|
1806
|
+
<div class="refsect2">
|
1807
|
+
<a name="gtk-entry-set-icon-from-gicon"></a><h3>gtk_entry_set_icon_from_gicon ()</h3>
|
1808
|
+
<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>,
|
1809
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
1810
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>);</pre>
|
1811
|
+
<p>
|
1812
|
+
Sets the icon shown in the entry at the specified position
|
1813
|
+
from the current icon theme.
|
1814
|
+
If the icon isn't known, a "broken image" icon will be displayed
|
1815
|
+
instead.
|
1816
|
+
</p>
|
1817
|
+
<p>
|
1818
|
+
If <em class="parameter"><code>icon</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, no icon will be shown in the specified position.
|
1819
|
+
</p>
|
1820
|
+
<div class="variablelist"><table border="0">
|
1821
|
+
<col align="left" valign="top">
|
1822
|
+
<tbody>
|
1823
|
+
<tr>
|
1824
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1825
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1826
|
+
</td>
|
1827
|
+
</tr>
|
1828
|
+
<tr>
|
1829
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1830
|
+
<td>The position at which to set the icon</td>
|
1831
|
+
</tr>
|
1832
|
+
<tr>
|
1833
|
+
<td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
|
1834
|
+
<td>The icon to set, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
|
1835
|
+
</td>
|
1836
|
+
</tr>
|
1837
|
+
</tbody>
|
1838
|
+
</table></div>
|
1839
|
+
<p class="since">Since 2.16</p>
|
1840
|
+
</div>
|
1841
|
+
<hr>
|
1842
|
+
<div class="refsect2">
|
1843
|
+
<a name="gtk-entry-get-icon-storage-type"></a><h3>gtk_entry_get_icon_storage_type ()</h3>
|
1844
|
+
<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>,
|
1845
|
+
<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>
|
1846
|
+
<p>
|
1847
|
+
Gets the type of representation being used by the icon
|
1848
|
+
to store image data. If the icon has no image data,
|
1849
|
+
the return value will be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a>.
|
1850
|
+
</p>
|
1851
|
+
<div class="variablelist"><table border="0">
|
1852
|
+
<col align="left" valign="top">
|
1853
|
+
<tbody>
|
1854
|
+
<tr>
|
1855
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1856
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1857
|
+
</td>
|
1858
|
+
</tr>
|
1859
|
+
<tr>
|
1860
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1861
|
+
<td>Icon position</td>
|
1862
|
+
</tr>
|
1863
|
+
<tr>
|
1864
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1865
|
+
<td>image representation being used</td>
|
1866
|
+
</tr>
|
1867
|
+
</tbody>
|
1868
|
+
</table></div>
|
1869
|
+
<p class="since">Since 2.16</p>
|
1870
|
+
</div>
|
1871
|
+
<hr>
|
1872
|
+
<div class="refsect2">
|
1873
|
+
<a name="gtk-entry-get-icon-pixbuf"></a><h3>gtk_entry_get_icon_pixbuf ()</h3>
|
1874
|
+
<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>,
|
1875
|
+
<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>
|
1876
|
+
<p>
|
1877
|
+
Retrieves the image used for the icon.
|
1878
|
+
</p>
|
1879
|
+
<p>
|
1880
|
+
Unlike the other methods of setting and getting icon data, this
|
1881
|
+
method will work regardless of whether the icon was set using a
|
1882
|
+
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>, a <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>, a stock item, or an icon name.
|
1883
|
+
</p>
|
1884
|
+
<div class="variablelist"><table border="0">
|
1885
|
+
<col align="left" valign="top">
|
1886
|
+
<tbody>
|
1887
|
+
<tr>
|
1888
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1889
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1890
|
+
</td>
|
1891
|
+
</tr>
|
1892
|
+
<tr>
|
1893
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1894
|
+
<td>Icon position</td>
|
1895
|
+
</tr>
|
1896
|
+
<tr>
|
1897
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1898
|
+
<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="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no icon is
|
1899
|
+
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>
|
1900
|
+
</td>
|
1901
|
+
</tr>
|
1902
|
+
</tbody>
|
1903
|
+
</table></div>
|
1904
|
+
<p class="since">Since 2.16</p>
|
1905
|
+
</div>
|
1906
|
+
<hr>
|
1907
|
+
<div class="refsect2">
|
1908
|
+
<a name="gtk-entry-get-icon-stock"></a><h3>gtk_entry_get_icon_stock ()</h3>
|
1909
|
+
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * 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>,
|
1910
|
+
<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>
|
1911
|
+
<p>
|
1912
|
+
Retrieves the stock id used for the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if there is
|
1913
|
+
no icon or if the icon was set by some other method (e.g., by
|
1914
|
+
pixbuf, icon name or gicon).
|
1915
|
+
</p>
|
1916
|
+
<div class="variablelist"><table border="0">
|
1917
|
+
<col align="left" valign="top">
|
1918
|
+
<tbody>
|
1919
|
+
<tr>
|
1920
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1921
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1922
|
+
</td>
|
1923
|
+
</tr>
|
1924
|
+
<tr>
|
1925
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1926
|
+
<td>Icon position</td>
|
1927
|
+
</tr>
|
1928
|
+
<tr>
|
1929
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1930
|
+
<td>A stock id, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no icon is set or if the icon
|
1931
|
+
wasn't set from a stock id</td>
|
1932
|
+
</tr>
|
1933
|
+
</tbody>
|
1934
|
+
</table></div>
|
1935
|
+
<p class="since">Since 2.16</p>
|
1936
|
+
</div>
|
1937
|
+
<hr>
|
1938
|
+
<div class="refsect2">
|
1939
|
+
<a name="gtk-entry-get-icon-name"></a><h3>gtk_entry_get_icon_name ()</h3>
|
1940
|
+
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * 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>,
|
1941
|
+
<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>
|
1942
|
+
<p>
|
1943
|
+
Retrieves the icon name used for the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if there is
|
1944
|
+
no icon or if the icon was set by some other method (e.g., by
|
1945
|
+
pixbuf, stock or gicon).
|
1946
|
+
</p>
|
1947
|
+
<div class="variablelist"><table border="0">
|
1948
|
+
<col align="left" valign="top">
|
1949
|
+
<tbody>
|
1950
|
+
<tr>
|
1951
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1952
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1953
|
+
</td>
|
1954
|
+
</tr>
|
1955
|
+
<tr>
|
1956
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1957
|
+
<td>Icon position</td>
|
1958
|
+
</tr>
|
1959
|
+
<tr>
|
1960
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1961
|
+
<td>An icon name, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no icon is set or if the icon
|
1962
|
+
wasn't set from an icon name</td>
|
1963
|
+
</tr>
|
1964
|
+
</tbody>
|
1965
|
+
</table></div>
|
1966
|
+
<p class="since">Since 2.16</p>
|
1967
|
+
</div>
|
1968
|
+
<hr>
|
1969
|
+
<div class="refsect2">
|
1970
|
+
<a name="gtk-entry-get-icon-gicon"></a><h3>gtk_entry_get_icon_gicon ()</h3>
|
1971
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="returnvalue">GIcon</span></a> * 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>,
|
1972
|
+
<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>
|
1973
|
+
<p>
|
1974
|
+
Retrieves the <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> used for the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if there is
|
1975
|
+
no icon or if the icon was set by some other method (e.g., by
|
1976
|
+
stock, pixbuf, or icon name).
|
1977
|
+
</p>
|
1978
|
+
<div class="variablelist"><table border="0">
|
1979
|
+
<col align="left" valign="top">
|
1980
|
+
<tbody>
|
1981
|
+
<tr>
|
1982
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
1983
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
1984
|
+
</td>
|
1985
|
+
</tr>
|
1986
|
+
<tr>
|
1987
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1988
|
+
<td>Icon position</td>
|
1989
|
+
</tr>
|
1990
|
+
<tr>
|
1991
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1992
|
+
<td>A <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no icon is set
|
1993
|
+
or if the icon is not a <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1994
|
+
</td>
|
1995
|
+
</tr>
|
1996
|
+
</tbody>
|
1997
|
+
</table></div>
|
1998
|
+
<p class="since">Since 2.16</p>
|
1999
|
+
</div>
|
2000
|
+
<hr>
|
2001
|
+
<div class="refsect2">
|
2002
|
+
<a name="gtk-entry-set-icon-activatable"></a><h3>gtk_entry_set_icon_activatable ()</h3>
|
2003
|
+
<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>,
|
2004
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
2005
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> activatable</code></em>);</pre>
|
2006
|
+
<p>
|
2007
|
+
Sets whether the icon is activatable.
|
2008
|
+
</p>
|
2009
|
+
<div class="variablelist"><table border="0">
|
2010
|
+
<col align="left" valign="top">
|
2011
|
+
<tbody>
|
2012
|
+
<tr>
|
2013
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2014
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2015
|
+
</td>
|
2016
|
+
</tr>
|
2017
|
+
<tr>
|
2018
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2019
|
+
<td>Icon position</td>
|
2020
|
+
</tr>
|
2021
|
+
<tr>
|
2022
|
+
<td><p><span class="term"><em class="parameter"><code>activatable</code></em> :</span></p></td>
|
2023
|
+
<td>
|
2024
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon should be activatable</td>
|
2025
|
+
</tr>
|
2026
|
+
</tbody>
|
2027
|
+
</table></div>
|
2028
|
+
<p class="since">Since 2.16</p>
|
2029
|
+
</div>
|
2030
|
+
<hr>
|
2031
|
+
<div class="refsect2">
|
2032
|
+
<a name="gtk-entry-get-icon-activatable"></a><h3>gtk_entry_get_icon_activatable ()</h3>
|
2033
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
|
2034
|
+
<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>
|
2035
|
+
<p>
|
2036
|
+
Returns whether the icon is activatable.
|
2037
|
+
</p>
|
2038
|
+
<div class="variablelist"><table border="0">
|
2039
|
+
<col align="left" valign="top">
|
2040
|
+
<tbody>
|
2041
|
+
<tr>
|
2042
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2043
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2044
|
+
</td>
|
2045
|
+
</tr>
|
2046
|
+
<tr>
|
2047
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2048
|
+
<td>Icon position</td>
|
2049
|
+
</tr>
|
2050
|
+
<tr>
|
2051
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2052
|
+
<td>
|
2053
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon is activatable.</td>
|
2054
|
+
</tr>
|
2055
|
+
</tbody>
|
2056
|
+
</table></div>
|
2057
|
+
<p class="since">Since 2.16</p>
|
2058
|
+
</div>
|
2059
|
+
<hr>
|
2060
|
+
<div class="refsect2">
|
2061
|
+
<a name="gtk-entry-set-icon-sensitive"></a><h3>gtk_entry_set_icon_sensitive ()</h3>
|
2062
|
+
<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>,
|
2063
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
2064
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> sensitive</code></em>);</pre>
|
2065
|
+
<p>
|
2066
|
+
Sets the sensitivity for the specified icon.
|
2067
|
+
</p>
|
2068
|
+
<div class="variablelist"><table border="0">
|
2069
|
+
<col align="left" valign="top">
|
2070
|
+
<tbody>
|
2071
|
+
<tr>
|
2072
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2073
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2074
|
+
</td>
|
2075
|
+
</tr>
|
2076
|
+
<tr>
|
2077
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2078
|
+
<td>Icon position</td>
|
2079
|
+
</tr>
|
2080
|
+
<tr>
|
2081
|
+
<td><p><span class="term"><em class="parameter"><code>sensitive</code></em> :</span></p></td>
|
2082
|
+
<td>Specifies whether the icon should appear
|
2083
|
+
sensitive or insensitive</td>
|
2084
|
+
</tr>
|
2085
|
+
</tbody>
|
2086
|
+
</table></div>
|
2087
|
+
<p class="since">Since 2.16</p>
|
2088
|
+
</div>
|
2089
|
+
<hr>
|
2090
|
+
<div class="refsect2">
|
2091
|
+
<a name="gtk-entry-get-icon-sensitive"></a><h3>gtk_entry_get_icon_sensitive ()</h3>
|
2092
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> 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>,
|
2093
|
+
<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>
|
2094
|
+
<p>
|
2095
|
+
Returns whether the icon appears sensitive or insensitive.
|
2096
|
+
</p>
|
2097
|
+
<div class="variablelist"><table border="0">
|
2098
|
+
<col align="left" valign="top">
|
2099
|
+
<tbody>
|
2100
|
+
<tr>
|
2101
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2102
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2103
|
+
</td>
|
2104
|
+
</tr>
|
2105
|
+
<tr>
|
2106
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2107
|
+
<td>Icon position</td>
|
2108
|
+
</tr>
|
2109
|
+
<tr>
|
2110
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2111
|
+
<td>
|
2112
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon is sensitive.</td>
|
2113
|
+
</tr>
|
2114
|
+
</tbody>
|
2115
|
+
</table></div>
|
2116
|
+
<p class="since">Since 2.16</p>
|
2117
|
+
</div>
|
2118
|
+
<hr>
|
2119
|
+
<div class="refsect2">
|
2120
|
+
<a name="gtk-entry-get-icon-at-pos"></a><h3>gtk_entry_get_icon_at_pos ()</h3>
|
2121
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> 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>,
|
2122
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
2123
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
|
2124
|
+
<p>
|
2125
|
+
Finds the icon at the given position and return its index.
|
2126
|
+
If <em class="parameter"><code>x</code></em>, <em class="parameter"><code>y</code></em> doesn't lie inside an icon, -1 is returned.
|
2127
|
+
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>
|
2128
|
+
signal handler.
|
2129
|
+
</p>
|
2130
|
+
<div class="variablelist"><table border="0">
|
2131
|
+
<col align="left" valign="top">
|
2132
|
+
<tbody>
|
2133
|
+
<tr>
|
2134
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2135
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2136
|
+
</td>
|
2137
|
+
</tr>
|
2138
|
+
<tr>
|
2139
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
2140
|
+
<td>the x coordinate of the position to find</td>
|
2141
|
+
</tr>
|
2142
|
+
<tr>
|
2143
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
2144
|
+
<td>the y coordinate of the position to find</td>
|
2145
|
+
</tr>
|
2146
|
+
<tr>
|
2147
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2148
|
+
<td>the index of the icon at the given position, or -1</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-tooltip-text"></a><h3>gtk_entry_set_icon_tooltip_text ()</h3>
|
2157
|
+
<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>,
|
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>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *tooltip</code></em>);</pre>
|
2160
|
+
<p>
|
2161
|
+
Sets <em class="parameter"><code>tooltip</code></em> as the contents of the tooltip for the icon
|
2162
|
+
at the specified position.
|
2163
|
+
</p>
|
2164
|
+
<p>
|
2165
|
+
Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for <em class="parameter"><code>tooltip</code></em> to remove an existing tooltip.
|
2166
|
+
</p>
|
2167
|
+
<p>
|
2168
|
+
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
|
2169
|
+
<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>.
|
2170
|
+
</p>
|
2171
|
+
<div class="variablelist"><table border="0">
|
2172
|
+
<col align="left" valign="top">
|
2173
|
+
<tbody>
|
2174
|
+
<tr>
|
2175
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2176
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2177
|
+
</td>
|
2178
|
+
</tr>
|
2179
|
+
<tr>
|
2180
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2181
|
+
<td>the icon position</td>
|
2182
|
+
</tr>
|
2183
|
+
<tr>
|
2184
|
+
<td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
|
2185
|
+
<td>the contents of the tooltip for the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
|
2186
|
+
</td>
|
2187
|
+
</tr>
|
2188
|
+
</tbody>
|
2189
|
+
</table></div>
|
2190
|
+
<p class="since">Since 2.16</p>
|
2191
|
+
</div>
|
2192
|
+
<hr>
|
2193
|
+
<div class="refsect2">
|
2194
|
+
<a name="gtk-entry-get-icon-tooltip-text"></a><h3>gtk_entry_get_icon_tooltip_text ()</h3>
|
2195
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * 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>,
|
2196
|
+
<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>
|
2197
|
+
<p>
|
2198
|
+
Gets the contents of the tooltip on the icon at the specified
|
2199
|
+
position in <em class="parameter"><code>entry</code></em>.
|
2200
|
+
</p>
|
2201
|
+
<div class="variablelist"><table border="0">
|
2202
|
+
<col align="left" valign="top">
|
2203
|
+
<tbody>
|
2204
|
+
<tr>
|
2205
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2206
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2207
|
+
</td>
|
2208
|
+
</tr>
|
2209
|
+
<tr>
|
2210
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2211
|
+
<td>the icon position</td>
|
2212
|
+
</tr>
|
2213
|
+
<tr>
|
2214
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2215
|
+
<td>the tooltip text, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Free the returned string
|
2216
|
+
with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done.</td>
|
2217
|
+
</tr>
|
2218
|
+
</tbody>
|
2219
|
+
</table></div>
|
2220
|
+
<p class="since">Since 2.16</p>
|
2221
|
+
</div>
|
2222
|
+
<hr>
|
2223
|
+
<div class="refsect2">
|
2224
|
+
<a name="gtk-entry-set-icon-tooltip-markup"></a><h3>gtk_entry_set_icon_tooltip_markup ()</h3>
|
2225
|
+
<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>,
|
2226
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
2227
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *tooltip</code></em>);</pre>
|
2228
|
+
<p>
|
2229
|
+
Sets <em class="parameter"><code>tooltip</code></em> as the contents of the tooltip for the icon at
|
2230
|
+
the specified position. <em class="parameter"><code>tooltip</code></em> is assumed to be marked up with
|
2231
|
+
the <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango text markup language</a>.
|
2232
|
+
</p>
|
2233
|
+
<p>
|
2234
|
+
Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for <em class="parameter"><code>tooltip</code></em> to remove an existing tooltip.
|
2235
|
+
</p>
|
2236
|
+
<p>
|
2237
|
+
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
|
2238
|
+
<code class="function">gtk_enty_set_icon_tooltip_text()</code>.
|
2239
|
+
</p>
|
2240
|
+
<div class="variablelist"><table border="0">
|
2241
|
+
<col align="left" valign="top">
|
2242
|
+
<tbody>
|
2243
|
+
<tr>
|
2244
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2245
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2246
|
+
</td>
|
2247
|
+
</tr>
|
2248
|
+
<tr>
|
2249
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2250
|
+
<td>the icon position</td>
|
2251
|
+
</tr>
|
2252
|
+
<tr>
|
2253
|
+
<td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
|
2254
|
+
<td>the contents of the tooltip for the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.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>
|
2255
|
+
</td>
|
2256
|
+
</tr>
|
2257
|
+
</tbody>
|
2258
|
+
</table></div>
|
2259
|
+
<p class="since">Since 2.16</p>
|
2260
|
+
</div>
|
2261
|
+
<hr>
|
2262
|
+
<div class="refsect2">
|
2263
|
+
<a name="gtk-entry-get-icon-tooltip-markup"></a><h3>gtk_entry_get_icon_tooltip_markup ()</h3>
|
2264
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * 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>,
|
2265
|
+
<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>
|
2266
|
+
<p>
|
2267
|
+
Gets the contents of the tooltip on the icon at the specified
|
2268
|
+
position in <em class="parameter"><code>entry</code></em>.
|
2269
|
+
</p>
|
2270
|
+
<div class="variablelist"><table border="0">
|
2271
|
+
<col align="left" valign="top">
|
2272
|
+
<tbody>
|
2273
|
+
<tr>
|
2274
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2275
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2276
|
+
</td>
|
2277
|
+
</tr>
|
2278
|
+
<tr>
|
2279
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2280
|
+
<td>the icon position</td>
|
2281
|
+
</tr>
|
2282
|
+
<tr>
|
2283
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2284
|
+
<td>the tooltip text, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Free the returned string
|
2285
|
+
with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done.</td>
|
2286
|
+
</tr>
|
2287
|
+
</tbody>
|
2288
|
+
</table></div>
|
2289
|
+
<p class="since">Since 2.16</p>
|
2290
|
+
</div>
|
2291
|
+
<hr>
|
2292
|
+
<div class="refsect2">
|
2293
|
+
<a name="gtk-entry-set-icon-drag-source"></a><h3>gtk_entry_set_icon_drag_source ()</h3>
|
2294
|
+
<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>,
|
2295
|
+
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
2296
|
+
<em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>,
|
2297
|
+
<em class="parameter"><code><a href="../gdk/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
|
2298
|
+
<p>
|
2299
|
+
Sets up the icon at the given position so that GTK+ will start a drag
|
2300
|
+
operation when the user clicks and drags the icon.
|
2301
|
+
</p>
|
2302
|
+
<p>
|
2303
|
+
To handle the drag operation, you need to connect to the usual
|
2304
|
+
<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>)
|
2305
|
+
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
|
2306
|
+
your signal handler to find out if the drag was started from
|
2307
|
+
an icon.
|
2308
|
+
</p>
|
2309
|
+
<p>
|
2310
|
+
By default, GTK+ uses the icon as the drag icon. You can use the
|
2311
|
+
<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
|
2312
|
+
have to use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-connect-after"><code class="function">g_signal_connect_after()</code></a> to ensure that your signal handler
|
2313
|
+
gets executed after the default handler.
|
2314
|
+
</p>
|
2315
|
+
<div class="variablelist"><table border="0">
|
2316
|
+
<col align="left" valign="top">
|
2317
|
+
<tbody>
|
2318
|
+
<tr>
|
2319
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2320
|
+
<td>a <span class="type">GtkIconEntry</span>
|
2321
|
+
</td>
|
2322
|
+
</tr>
|
2323
|
+
<tr>
|
2324
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2325
|
+
<td>icon position</td>
|
2326
|
+
</tr>
|
2327
|
+
<tr>
|
2328
|
+
<td><p><span class="term"><em class="parameter"><code>target_list</code></em> :</span></p></td>
|
2329
|
+
<td>the targets (data formats) in which the data can be provided</td>
|
2330
|
+
</tr>
|
2331
|
+
<tr>
|
2332
|
+
<td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
|
2333
|
+
<td>a bitmask of the allowed drag actions</td>
|
2334
|
+
</tr>
|
2335
|
+
</tbody>
|
2336
|
+
</table></div>
|
2337
|
+
<p class="since">Since 2.16</p>
|
2338
|
+
</div>
|
2339
|
+
<hr>
|
2340
|
+
<div class="refsect2">
|
2341
|
+
<a name="gtk-entry-get-current-icon-drag-source"></a><h3>gtk_entry_get_current_icon_drag_source ()</h3>
|
2342
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_entry_get_current_icon_drag_source
|
2343
|
+
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
2344
|
+
<p>
|
2345
|
+
Returns the index of the icon which is the source of the current
|
2346
|
+
DND operation, or -1.
|
2347
|
+
</p>
|
2348
|
+
<p>
|
2349
|
+
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>
|
2350
|
+
callback.
|
2351
|
+
</p>
|
2352
|
+
<div class="variablelist"><table border="0">
|
2353
|
+
<col align="left" valign="top">
|
2354
|
+
<tbody>
|
2355
|
+
<tr>
|
2356
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2357
|
+
<td>a <span class="type">GtkIconEntry</span>
|
2358
|
+
</td>
|
2359
|
+
</tr>
|
2360
|
+
<tr>
|
2361
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2362
|
+
<td>index of the icon which is the source of the current
|
2363
|
+
DND operation, or -1.</td>
|
2364
|
+
</tr>
|
2365
|
+
</tbody>
|
2366
|
+
</table></div>
|
2367
|
+
<p class="since">Since 2.16</p>
|
2368
|
+
</div>
|
2369
|
+
<hr>
|
2370
|
+
<div class="refsect2">
|
2371
|
+
<a name="gtk-entry-get-icon-window"></a><h3>gtk_entry_get_icon_window ()</h3>
|
2372
|
+
<pre class="programlisting"><a href="../gdk/gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * gtk_entry_get_icon_window (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
2373
|
+
<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>
|
2374
|
+
<p>
|
2375
|
+
Returns the <a href="../gdk/gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> which contains the entry's icon at
|
2376
|
+
<em class="parameter"><code>icon_pos</code></em>. This function is useful when drawing something to the
|
2377
|
+
entry in an expose-event callback because it enables the callback
|
2378
|
+
to distinguish between the text window and entry's icon windows.
|
2379
|
+
</p>
|
2380
|
+
<p>
|
2381
|
+
See also <a class="link" href="GtkEntry.html#gtk-entry-get-text-window" title="gtk_entry_get_text_window ()"><code class="function">gtk_entry_get_text_window()</code></a>.
|
2382
|
+
</p>
|
2383
|
+
<p>
|
2384
|
+
Note that GTK+ 3 does not have this function anymore; it has
|
2385
|
+
been replaced by <a href="http://library.gnome.org/devel/gtk/GtkEntry.html#gtk-entry-get-icon-area"><code class="function">gtk_entry_get_icon_area()</code></a>.
|
2386
|
+
</p>
|
2387
|
+
<div class="variablelist"><table border="0">
|
2388
|
+
<col align="left" valign="top">
|
2389
|
+
<tbody>
|
2390
|
+
<tr>
|
2391
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2392
|
+
<td>A <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2393
|
+
</td>
|
2394
|
+
</tr>
|
2395
|
+
<tr>
|
2396
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2397
|
+
<td>Icon position</td>
|
2398
|
+
</tr>
|
2399
|
+
<tr>
|
2400
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2401
|
+
<td>the entry's icon window at <em class="parameter"><code>icon_pos</code></em>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2402
|
+
</td>
|
2403
|
+
</tr>
|
2404
|
+
</tbody>
|
2405
|
+
</table></div>
|
2406
|
+
<p class="since">Since 2.20</p>
|
2407
|
+
</div>
|
2408
|
+
<hr>
|
2409
|
+
<div class="refsect2">
|
2410
|
+
<a name="gtk-entry-get-text-window"></a><h3>gtk_entry_get_text_window ()</h3>
|
2411
|
+
<pre class="programlisting"><a href="../gdk/gdk-Windows.html#GdkWindow"><span class="returnvalue">GdkWindow</span></a> * gtk_entry_get_text_window (<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
2412
|
+
<p>
|
2413
|
+
Returns the <a href="../gdk/gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> which contains the text. This function is
|
2414
|
+
useful when drawing something to the entry in an expose-event
|
2415
|
+
callback because it enables the callback to distinguish between
|
2416
|
+
the text window and entry's icon windows.
|
2417
|
+
</p>
|
2418
|
+
<p>
|
2419
|
+
See also <a class="link" href="GtkEntry.html#gtk-entry-get-icon-window" title="gtk_entry_get_icon_window ()"><code class="function">gtk_entry_get_icon_window()</code></a>.
|
2420
|
+
</p>
|
2421
|
+
<p>
|
2422
|
+
Note that GTK+ 3 does not have this function anymore; it has
|
2423
|
+
been replaced by <a href="http://library.gnome.org/devel/gtk/GtkEntry.html#gtk-entry-get-text-area"><code class="function">gtk_entry_get_text_area()</code></a>.
|
2424
|
+
</p>
|
2425
|
+
<div class="variablelist"><table border="0">
|
2426
|
+
<col align="left" valign="top">
|
2427
|
+
<tbody>
|
2428
|
+
<tr>
|
2429
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2430
|
+
<td>a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
2431
|
+
</td>
|
2432
|
+
</tr>
|
2433
|
+
<tr>
|
2434
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2435
|
+
<td>the entry's text window. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2436
|
+
</td>
|
2437
|
+
</tr>
|
2438
|
+
</tbody>
|
2439
|
+
</table></div>
|
2440
|
+
<p class="since">Since 2.20</p>
|
2441
|
+
</div>
|
2442
|
+
</div>
|
2443
|
+
<div class="refsect1">
|
2444
|
+
<a name="GtkEntry.property-details"></a><h2>Property Details</h2>
|
2445
|
+
<div class="refsect2">
|
2446
|
+
<a name="GtkEntry--activates-default"></a><h3>The <code class="literal">"activates-default"</code> property</h3>
|
2447
|
+
<pre class="programlisting"> "activates-default" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
2448
|
+
<p>Whether to activate the default widget (such as the default button in a dialog) when Enter is pressed.</p>
|
2449
|
+
<p>Default value: FALSE</p>
|
2450
|
+
</div>
|
2451
|
+
<hr>
|
2452
|
+
<div class="refsect2">
|
2453
|
+
<a name="GtkEntry--buffer"></a><h3>The <code class="literal">"buffer"</code> property</h3>
|
2454
|
+
<pre class="programlisting"> "buffer" <a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a>* : Read / Write / Construct</pre>
|
2455
|
+
<p>Text buffer object which actually stores entry text.</p>
|
2456
|
+
</div>
|
2457
|
+
<hr>
|
2458
|
+
<div class="refsect2">
|
2459
|
+
<a name="GtkEntry--caps-lock-warning"></a><h3>The <code class="literal">"caps-lock-warning"</code> property</h3>
|
2460
|
+
<pre class="programlisting"> "caps-lock-warning" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
2461
|
+
<p>
|
2462
|
+
Whether password entries will show a warning when Caps Lock is on.
|
2463
|
+
</p>
|
2464
|
+
<p>
|
2465
|
+
Note that the warning is shown using a secondary icon, and thus
|
2466
|
+
does not work if you are using the secondary icon position for some
|
2467
|
+
other purpose.
|
2468
|
+
</p>
|
2469
|
+
<p>Default value: TRUE</p>
|
2470
|
+
<p class="since">Since 2.16</p>
|
2471
|
+
</div>
|
2472
|
+
<hr>
|
2473
|
+
<div class="refsect2">
|
2474
|
+
<a name="GtkEntry--cursor-position"></a><h3>The <code class="literal">"cursor-position"</code> property</h3>
|
2475
|
+
<pre class="programlisting"> "cursor-position" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
|
2476
|
+
<p>The current position of the insertion cursor in chars.</p>
|
2477
|
+
<p>Allowed values: [0,65535]</p>
|
2478
|
+
<p>Default value: 0</p>
|
2479
|
+
</div>
|
2480
|
+
<hr>
|
2481
|
+
<div class="refsect2">
|
2482
|
+
<a name="GtkEntry--editable"></a><h3>The <code class="literal">"editable"</code> property</h3>
|
2483
|
+
<pre class="programlisting"> "editable" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
2484
|
+
<p>Whether the entry contents can be edited.</p>
|
2485
|
+
<p>Default value: TRUE</p>
|
2486
|
+
</div>
|
2487
|
+
<hr>
|
2488
|
+
<div class="refsect2">
|
2489
|
+
<a name="GtkEntry--has-frame"></a><h3>The <code class="literal">"has-frame"</code> property</h3>
|
2490
|
+
<pre class="programlisting"> "has-frame" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
2491
|
+
<p>FALSE removes outside bevel from entry.</p>
|
2492
|
+
<p>Default value: TRUE</p>
|
2493
|
+
</div>
|
2494
|
+
<hr>
|
2495
|
+
<div class="refsect2">
|
2496
|
+
<a name="GtkEntry--im-module"></a><h3>The <code class="literal">"im-module"</code> property</h3>
|
2497
|
+
<pre class="programlisting"> "im-module" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
2498
|
+
<p>
|
2499
|
+
Which IM (input method) module should be used for this entry.
|
2500
|
+
See <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="type">GtkIMContext</span></a>.
|
2501
|
+
</p>
|
2502
|
+
<p>
|
2503
|
+
Setting this to a non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> value overrides the
|
2504
|
+
system-wide IM module setting. See the GtkSettings
|
2505
|
+
<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.
|
2506
|
+
</p>
|
2507
|
+
<p>Default value: NULL</p>
|
2508
|
+
<p class="since">Since 2.16</p>
|
2509
|
+
</div>
|
2510
|
+
<hr>
|
2511
|
+
<div class="refsect2">
|
2512
|
+
<a name="GtkEntry--inner-border"></a><h3>The <code class="literal">"inner-border"</code> property</h3>
|
2513
|
+
<pre class="programlisting"> "inner-border" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read / Write</pre>
|
2514
|
+
<p>
|
2515
|
+
Sets the text area's border between the text and the frame.
|
2516
|
+
</p>
|
2517
|
+
<p class="since">Since 2.10</p>
|
2518
|
+
</div>
|
2519
|
+
<hr>
|
2520
|
+
<div class="refsect2">
|
2521
|
+
<a name="GtkEntry--invisible-char"></a><h3>The <code class="literal">"invisible-char"</code> property</h3>
|
2522
|
+
<pre class="programlisting"> "invisible-char" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write</pre>
|
2523
|
+
<p>
|
2524
|
+
The invisible character is used when masking entry contents (in
|
2525
|
+
\"password mode\")"). When it is not explicitly set with the
|
2526
|
+
<span class="type">"invisible-char"</span> property, GTK+ determines the character
|
2527
|
+
to use from a list of possible candidates, depending on availability
|
2528
|
+
in the current font.
|
2529
|
+
</p>
|
2530
|
+
<p>
|
2531
|
+
This style property allows the theme to prepend a character
|
2532
|
+
to the list of candidates.
|
2533
|
+
</p>
|
2534
|
+
<p>Default value: '*'</p>
|
2535
|
+
<p class="since">Since 2.18</p>
|
2536
|
+
</div>
|
2537
|
+
<hr>
|
2538
|
+
<div class="refsect2">
|
2539
|
+
<a name="GtkEntry--invisible-char-set"></a><h3>The <code class="literal">"invisible-char-set"</code> property</h3>
|
2540
|
+
<pre class="programlisting"> "invisible-char-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
2541
|
+
<p>
|
2542
|
+
Whether the invisible char has been set for the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.
|
2543
|
+
</p>
|
2544
|
+
<p>Default value: FALSE</p>
|
2545
|
+
<p class="since">Since 2.16</p>
|
2546
|
+
</div>
|
2547
|
+
<hr>
|
2548
|
+
<div class="refsect2">
|
2549
|
+
<a name="GtkEntry--max-length"></a><h3>The <code class="literal">"max-length"</code> property</h3>
|
2550
|
+
<pre class="programlisting"> "max-length" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
2551
|
+
<p>Maximum number of characters for this entry. Zero if no maximum.</p>
|
2552
|
+
<p>Allowed values: [0,65535]</p>
|
2553
|
+
<p>Default value: 0</p>
|
2554
|
+
</div>
|
2555
|
+
<hr>
|
2556
|
+
<div class="refsect2">
|
2557
|
+
<a name="GtkEntry--overwrite-mode"></a><h3>The <code class="literal">"overwrite-mode"</code> property</h3>
|
2558
|
+
<pre class="programlisting"> "overwrite-mode" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
2559
|
+
<p>
|
2560
|
+
If text is overwritten when typing in the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.
|
2561
|
+
</p>
|
2562
|
+
<p>Default value: FALSE</p>
|
2563
|
+
<p class="since">Since 2.14</p>
|
2564
|
+
</div>
|
2565
|
+
<hr>
|
2566
|
+
<div class="refsect2">
|
2567
|
+
<a name="GtkEntry--primary-icon-activatable"></a><h3>The <code class="literal">"primary-icon-activatable"</code> property</h3>
|
2568
|
+
<pre class="programlisting"> "primary-icon-activatable" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
2569
|
+
<p>
|
2570
|
+
Whether the primary icon is activatable.
|
2571
|
+
</p>
|
2572
|
+
<p>
|
2573
|
+
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>
|
2574
|
+
signals only on sensitive, activatable icons.
|
2575
|
+
</p>
|
2576
|
+
<p>
|
2577
|
+
Sensitive, but non-activatable icons can be used for purely
|
2578
|
+
informational purposes.
|
2579
|
+
</p>
|
2580
|
+
<p>Default value: FALSE</p>
|
2581
|
+
<p class="since">Since 2.16</p>
|
2582
|
+
</div>
|
2583
|
+
<hr>
|
2584
|
+
<div class="refsect2">
|
2585
|
+
<a name="GtkEntry--primary-icon-gicon"></a><h3>The <code class="literal">"primary-icon-gicon"</code> property</h3>
|
2586
|
+
<pre class="programlisting"> "primary-icon-gicon" <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>* : Read / Write</pre>
|
2587
|
+
<p>
|
2588
|
+
The <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> to use for the primary icon for the entry.
|
2589
|
+
</p>
|
2590
|
+
<p class="since">Since 2.16</p>
|
2591
|
+
</div>
|
2592
|
+
<hr>
|
2593
|
+
<div class="refsect2">
|
2594
|
+
<a name="GtkEntry--primary-icon-name"></a><h3>The <code class="literal">"primary-icon-name"</code> property</h3>
|
2595
|
+
<pre class="programlisting"> "primary-icon-name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
2596
|
+
<p>
|
2597
|
+
The icon name to use for the primary icon for the entry.
|
2598
|
+
</p>
|
2599
|
+
<p>Default value: NULL</p>
|
2600
|
+
<p class="since">Since 2.16</p>
|
2601
|
+
</div>
|
2602
|
+
<hr>
|
2603
|
+
<div class="refsect2">
|
2604
|
+
<a name="GtkEntry--primary-icon-pixbuf"></a><h3>The <code class="literal">"primary-icon-pixbuf"</code> property</h3>
|
2605
|
+
<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>
|
2606
|
+
<p>
|
2607
|
+
A pixbuf to use as the primary icon for the entry.
|
2608
|
+
</p>
|
2609
|
+
<p class="since">Since 2.16</p>
|
2610
|
+
</div>
|
2611
|
+
<hr>
|
2612
|
+
<div class="refsect2">
|
2613
|
+
<a name="GtkEntry--primary-icon-sensitive"></a><h3>The <code class="literal">"primary-icon-sensitive"</code> property</h3>
|
2614
|
+
<pre class="programlisting"> "primary-icon-sensitive" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
2615
|
+
<p>
|
2616
|
+
Whether the primary icon is sensitive.
|
2617
|
+
</p>
|
2618
|
+
<p>
|
2619
|
+
An insensitive icon appears grayed out. GTK+ does not emit the
|
2620
|
+
<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
|
2621
|
+
does not allow DND from insensitive icons.
|
2622
|
+
</p>
|
2623
|
+
<p>
|
2624
|
+
An icon should be set insensitive if the action that would trigger
|
2625
|
+
when clicked is currently not available.
|
2626
|
+
</p>
|
2627
|
+
<p>Default value: TRUE</p>
|
2628
|
+
<p class="since">Since 2.16</p>
|
2629
|
+
</div>
|
2630
|
+
<hr>
|
2631
|
+
<div class="refsect2">
|
2632
|
+
<a name="GtkEntry--primary-icon-stock"></a><h3>The <code class="literal">"primary-icon-stock"</code> property</h3>
|
2633
|
+
<pre class="programlisting"> "primary-icon-stock" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
2634
|
+
<p>
|
2635
|
+
The stock id to use for the primary icon for the entry.
|
2636
|
+
</p>
|
2637
|
+
<p>Default value: NULL</p>
|
2638
|
+
<p class="since">Since 2.16</p>
|
2639
|
+
</div>
|
2640
|
+
<hr>
|
2641
|
+
<div class="refsect2">
|
2642
|
+
<a name="GtkEntry--primary-icon-storage-type"></a><h3>The <code class="literal">"primary-icon-storage-type"</code> property</h3>
|
2643
|
+
<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>
|
2644
|
+
<p>
|
2645
|
+
The representation which is used for the primary icon of the entry.
|
2646
|
+
</p>
|
2647
|
+
<p>Default value: GTK_IMAGE_EMPTY</p>
|
2648
|
+
<p class="since">Since 2.16</p>
|
2649
|
+
</div>
|
2650
|
+
<hr>
|
2651
|
+
<div class="refsect2">
|
2652
|
+
<a name="GtkEntry--primary-icon-tooltip-markup"></a><h3>The <code class="literal">"primary-icon-tooltip-markup"</code> property</h3>
|
2653
|
+
<pre class="programlisting"> "primary-icon-tooltip-markup" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
2654
|
+
<p>
|
2655
|
+
The contents of the tooltip on the primary icon, which is marked up
|
2656
|
+
with the <GTKDOCLINK HREF="PangoMarkupFormat">Pango text markup
|
2657
|
+
language</GTKDOCLINK>.
|
2658
|
+
</p>
|
2659
|
+
<p>
|
2660
|
+
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>.
|
2661
|
+
</p>
|
2662
|
+
<p>Default value: NULL</p>
|
2663
|
+
<p class="since">Since 2.16</p>
|
2664
|
+
</div>
|
2665
|
+
<hr>
|
2666
|
+
<div class="refsect2">
|
2667
|
+
<a name="GtkEntry--primary-icon-tooltip-text"></a><h3>The <code class="literal">"primary-icon-tooltip-text"</code> property</h3>
|
2668
|
+
<pre class="programlisting"> "primary-icon-tooltip-text" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
2669
|
+
<p>
|
2670
|
+
The contents of the tooltip on the primary icon.
|
2671
|
+
</p>
|
2672
|
+
<p>
|
2673
|
+
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>.
|
2674
|
+
</p>
|
2675
|
+
<p>Default value: NULL</p>
|
2676
|
+
<p class="since">Since 2.16</p>
|
2677
|
+
</div>
|
2678
|
+
<hr>
|
2679
|
+
<div class="refsect2">
|
2680
|
+
<a name="GtkEntry--progress-fraction"></a><h3>The <code class="literal">"progress-fraction"</code> property</h3>
|
2681
|
+
<pre class="programlisting"> "progress-fraction" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
|
2682
|
+
<p>
|
2683
|
+
The current fraction of the task that's been completed.
|
2684
|
+
</p>
|
2685
|
+
<p>Allowed values: [0,1]</p>
|
2686
|
+
<p>Default value: 0</p>
|
2687
|
+
<p class="since">Since 2.16</p>
|
2688
|
+
</div>
|
2689
|
+
<hr>
|
2690
|
+
<div class="refsect2">
|
2691
|
+
<a name="GtkEntry--progress-pulse-step"></a><h3>The <code class="literal">"progress-pulse-step"</code> property</h3>
|
2692
|
+
<pre class="programlisting"> "progress-pulse-step" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
|
2693
|
+
<p>
|
2694
|
+
The fraction of total entry width to move the progress
|
2695
|
+
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>.
|
2696
|
+
</p>
|
2697
|
+
<p>Allowed values: [0,1]</p>
|
2698
|
+
<p>Default value: 0.1</p>
|
2699
|
+
<p class="since">Since 2.16</p>
|
2700
|
+
</div>
|
2701
|
+
<hr>
|
2702
|
+
<div class="refsect2">
|
2703
|
+
<a name="GtkEntry--scroll-offset"></a><h3>The <code class="literal">"scroll-offset"</code> property</h3>
|
2704
|
+
<pre class="programlisting"> "scroll-offset" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
|
2705
|
+
<p>Number of pixels of the entry scrolled off the screen to the left.</p>
|
2706
|
+
<p>Allowed values: >= 0</p>
|
2707
|
+
<p>Default value: 0</p>
|
2708
|
+
</div>
|
2709
|
+
<hr>
|
2710
|
+
<div class="refsect2">
|
2711
|
+
<a name="GtkEntry--secondary-icon-activatable"></a><h3>The <code class="literal">"secondary-icon-activatable"</code> property</h3>
|
2712
|
+
<pre class="programlisting"> "secondary-icon-activatable" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
2713
|
+
<p>
|
2714
|
+
Whether the secondary icon is activatable.
|
2715
|
+
</p>
|
2716
|
+
<p>
|
2717
|
+
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>
|
2718
|
+
signals only on sensitive, activatable icons.
|
2719
|
+
</p>
|
2720
|
+
<p>
|
2721
|
+
Sensitive, but non-activatable icons can be used for purely
|
2722
|
+
informational purposes.
|
2723
|
+
</p>
|
2724
|
+
<p>Default value: FALSE</p>
|
2725
|
+
<p class="since">Since 2.16</p>
|
2726
|
+
</div>
|
2727
|
+
<hr>
|
2728
|
+
<div class="refsect2">
|
2729
|
+
<a name="GtkEntry--secondary-icon-gicon"></a><h3>The <code class="literal">"secondary-icon-gicon"</code> property</h3>
|
2730
|
+
<pre class="programlisting"> "secondary-icon-gicon" <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>* : Read / Write</pre>
|
2731
|
+
<p>
|
2732
|
+
The <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> to use for the secondary icon for the entry.
|
2733
|
+
</p>
|
2734
|
+
<p class="since">Since 2.16</p>
|
2735
|
+
</div>
|
2736
|
+
<hr>
|
2737
|
+
<div class="refsect2">
|
2738
|
+
<a name="GtkEntry--secondary-icon-name"></a><h3>The <code class="literal">"secondary-icon-name"</code> property</h3>
|
2739
|
+
<pre class="programlisting"> "secondary-icon-name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
2740
|
+
<p>
|
2741
|
+
The icon name to use for the secondary icon for the entry.
|
2742
|
+
</p>
|
2743
|
+
<p>Default value: NULL</p>
|
2744
|
+
<p class="since">Since 2.16</p>
|
2745
|
+
</div>
|
2746
|
+
<hr>
|
2747
|
+
<div class="refsect2">
|
2748
|
+
<a name="GtkEntry--secondary-icon-pixbuf"></a><h3>The <code class="literal">"secondary-icon-pixbuf"</code> property</h3>
|
2749
|
+
<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>
|
2750
|
+
<p>
|
2751
|
+
An pixbuf to use as the secondary icon for the entry.
|
2752
|
+
</p>
|
2753
|
+
<p class="since">Since 2.16</p>
|
2754
|
+
</div>
|
2755
|
+
<hr>
|
2756
|
+
<div class="refsect2">
|
2757
|
+
<a name="GtkEntry--secondary-icon-sensitive"></a><h3>The <code class="literal">"secondary-icon-sensitive"</code> property</h3>
|
2758
|
+
<pre class="programlisting"> "secondary-icon-sensitive" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
2759
|
+
<p>
|
2760
|
+
Whether the secondary icon is sensitive.
|
2761
|
+
</p>
|
2762
|
+
<p>
|
2763
|
+
An insensitive icon appears grayed out. GTK+ does not emit the
|
2764
|
+
<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
|
2765
|
+
does not allow DND from insensitive icons.
|
2766
|
+
</p>
|
2767
|
+
<p>
|
2768
|
+
An icon should be set insensitive if the action that would trigger
|
2769
|
+
when clicked is currently not available.
|
2770
|
+
</p>
|
2771
|
+
<p>Default value: TRUE</p>
|
2772
|
+
<p class="since">Since 2.16</p>
|
2773
|
+
</div>
|
2774
|
+
<hr>
|
2775
|
+
<div class="refsect2">
|
2776
|
+
<a name="GtkEntry--secondary-icon-stock"></a><h3>The <code class="literal">"secondary-icon-stock"</code> property</h3>
|
2777
|
+
<pre class="programlisting"> "secondary-icon-stock" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
2778
|
+
<p>
|
2779
|
+
The stock id to use for the secondary icon for the entry.
|
2780
|
+
</p>
|
2781
|
+
<p>Default value: NULL</p>
|
2782
|
+
<p class="since">Since 2.16</p>
|
2783
|
+
</div>
|
2784
|
+
<hr>
|
2785
|
+
<div class="refsect2">
|
2786
|
+
<a name="GtkEntry--secondary-icon-storage-type"></a><h3>The <code class="literal">"secondary-icon-storage-type"</code> property</h3>
|
2787
|
+
<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>
|
2788
|
+
<p>
|
2789
|
+
The representation which is used for the secondary icon of the entry.
|
2790
|
+
</p>
|
2791
|
+
<p>Default value: GTK_IMAGE_EMPTY</p>
|
2792
|
+
<p class="since">Since 2.16</p>
|
2793
|
+
</div>
|
2794
|
+
<hr>
|
2795
|
+
<div class="refsect2">
|
2796
|
+
<a name="GtkEntry--secondary-icon-tooltip-markup"></a><h3>The <code class="literal">"secondary-icon-tooltip-markup"</code> property</h3>
|
2797
|
+
<pre class="programlisting"> "secondary-icon-tooltip-markup" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
2798
|
+
<p>
|
2799
|
+
The contents of the tooltip on the secondary icon, which is marked up
|
2800
|
+
with the <GTKDOCLINK HREF="PangoMarkupFormat">Pango text markup
|
2801
|
+
language</GTKDOCLINK>.
|
2802
|
+
</p>
|
2803
|
+
<p>
|
2804
|
+
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>.
|
2805
|
+
</p>
|
2806
|
+
<p>Default value: NULL</p>
|
2807
|
+
<p class="since">Since 2.16</p>
|
2808
|
+
</div>
|
2809
|
+
<hr>
|
2810
|
+
<div class="refsect2">
|
2811
|
+
<a name="GtkEntry--secondary-icon-tooltip-text"></a><h3>The <code class="literal">"secondary-icon-tooltip-text"</code> property</h3>
|
2812
|
+
<pre class="programlisting"> "secondary-icon-tooltip-text" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
2813
|
+
<p>
|
2814
|
+
The contents of the tooltip on the secondary icon.
|
2815
|
+
</p>
|
2816
|
+
<p>
|
2817
|
+
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>.
|
2818
|
+
</p>
|
2819
|
+
<p>Default value: NULL</p>
|
2820
|
+
<p class="since">Since 2.16</p>
|
2821
|
+
</div>
|
2822
|
+
<hr>
|
2823
|
+
<div class="refsect2">
|
2824
|
+
<a name="GtkEntry--selection-bound"></a><h3>The <code class="literal">"selection-bound"</code> property</h3>
|
2825
|
+
<pre class="programlisting"> "selection-bound" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
|
2826
|
+
<p>The position of the opposite end of the selection from the cursor in chars.</p>
|
2827
|
+
<p>Allowed values: [0,65535]</p>
|
2828
|
+
<p>Default value: 0</p>
|
2829
|
+
</div>
|
2830
|
+
<hr>
|
2831
|
+
<div class="refsect2">
|
2832
|
+
<a name="GtkEntry--shadow-type"></a><h3>The <code class="literal">"shadow-type"</code> property</h3>
|
2833
|
+
<pre class="programlisting"> "shadow-type" <a class="link" href="gtk-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> : Read / Write</pre>
|
2834
|
+
<p>
|
2835
|
+
Which kind of shadow to draw around the entry when
|
2836
|
+
<a class="link" href="GtkEntry.html#GtkEntry--has-frame" title='The "has-frame" property'><span class="type">"has-frame"</span></a> is set to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.
|
2837
|
+
</p>
|
2838
|
+
<p>Default value: GTK_SHADOW_IN</p>
|
2839
|
+
<p class="since">Since 2.12</p>
|
2840
|
+
</div>
|
2841
|
+
<hr>
|
2842
|
+
<div class="refsect2">
|
2843
|
+
<a name="GtkEntry--text"></a><h3>The <code class="literal">"text"</code> property</h3>
|
2844
|
+
<pre class="programlisting"> "text" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
2845
|
+
<p>The contents of the entry.</p>
|
2846
|
+
<p>Default value: ""</p>
|
2847
|
+
</div>
|
2848
|
+
<hr>
|
2849
|
+
<div class="refsect2">
|
2850
|
+
<a name="GtkEntry--text-length"></a><h3>The <code class="literal">"text-length"</code> property</h3>
|
2851
|
+
<pre class="programlisting"> "text-length" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read</pre>
|
2852
|
+
<p>
|
2853
|
+
The length of the text in the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.
|
2854
|
+
</p>
|
2855
|
+
<p>Allowed values: <= 65535</p>
|
2856
|
+
<p>Default value: 0</p>
|
2857
|
+
<p class="since">Since 2.14</p>
|
2858
|
+
</div>
|
2859
|
+
<hr>
|
2860
|
+
<div class="refsect2">
|
2861
|
+
<a name="GtkEntry--truncate-multiline"></a><h3>The <code class="literal">"truncate-multiline"</code> property</h3>
|
2862
|
+
<pre class="programlisting"> "truncate-multiline" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
2863
|
+
<p>
|
2864
|
+
When <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, pasted multi-line text is truncated to the first line.
|
2865
|
+
</p>
|
2866
|
+
<p>Default value: FALSE</p>
|
2867
|
+
<p class="since">Since 2.10</p>
|
2868
|
+
</div>
|
2869
|
+
<hr>
|
2870
|
+
<div class="refsect2">
|
2871
|
+
<a name="GtkEntry--visibility"></a><h3>The <code class="literal">"visibility"</code> property</h3>
|
2872
|
+
<pre class="programlisting"> "visibility" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
2873
|
+
<p>FALSE displays the "invisible char" instead of the actual text (password mode).</p>
|
2874
|
+
<p>Default value: TRUE</p>
|
2875
|
+
</div>
|
2876
|
+
<hr>
|
2877
|
+
<div class="refsect2">
|
2878
|
+
<a name="GtkEntry--width-chars"></a><h3>The <code class="literal">"width-chars"</code> property</h3>
|
2879
|
+
<pre class="programlisting"> "width-chars" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
2880
|
+
<p>Number of characters to leave space for in the entry.</p>
|
2881
|
+
<p>Allowed values: >= G_MAXULONG</p>
|
2882
|
+
<p>Default value: -1</p>
|
2883
|
+
</div>
|
2884
|
+
<hr>
|
2885
|
+
<div class="refsect2">
|
2886
|
+
<a name="GtkEntry--xalign"></a><h3>The <code class="literal">"xalign"</code> property</h3>
|
2887
|
+
<pre class="programlisting"> "xalign" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read / Write</pre>
|
2888
|
+
<p>
|
2889
|
+
The horizontal alignment, from 0 (left) to 1 (right).
|
2890
|
+
Reversed for RTL layouts.
|
2891
|
+
</p>
|
2892
|
+
<p>Allowed values: [0,1]</p>
|
2893
|
+
<p>Default value: 0</p>
|
2894
|
+
<p class="since">Since 2.4</p>
|
2895
|
+
</div>
|
2896
|
+
</div>
|
2897
|
+
<div class="refsect1">
|
2898
|
+
<a name="GtkEntry.style-property-details"></a><h2>Style Property Details</h2>
|
2899
|
+
<div class="refsect2">
|
2900
|
+
<a name="GtkEntry--s-icon-prelight"></a><h3>The <code class="literal">"icon-prelight"</code> style property</h3>
|
2901
|
+
<pre class="programlisting"> "icon-prelight" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
|
2902
|
+
<p>
|
2903
|
+
The prelight style property determines whether activatable
|
2904
|
+
icons prelight on mouseover.
|
2905
|
+
</p>
|
2906
|
+
<p>Default value: TRUE</p>
|
2907
|
+
<p class="since">Since 2.16</p>
|
2908
|
+
</div>
|
2909
|
+
<hr>
|
2910
|
+
<div class="refsect2">
|
2911
|
+
<a name="GtkEntry--s-inner-border"></a><h3>The <code class="literal">"inner-border"</code> style property</h3>
|
2912
|
+
<pre class="programlisting"> "inner-border" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read</pre>
|
2913
|
+
<p>
|
2914
|
+
Sets the text area's border between the text and the frame.
|
2915
|
+
</p>
|
2916
|
+
<p class="since">Since 2.10</p>
|
2917
|
+
</div>
|
2918
|
+
<hr>
|
2919
|
+
<div class="refsect2">
|
2920
|
+
<a name="GtkEntry--s-invisible-char"></a><h3>The <code class="literal">"invisible-char"</code> style property</h3>
|
2921
|
+
<pre class="programlisting"> "invisible-char" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read</pre>
|
2922
|
+
<p>
|
2923
|
+
The invisible character is used when masking entry contents (in
|
2924
|
+
\"password mode\")"). When it is not explicitly set with the
|
2925
|
+
<span class="type">"invisible-char"</span> property, GTK+ determines the character
|
2926
|
+
to use from a list of possible candidates, depending on availability
|
2927
|
+
in the current font.
|
2928
|
+
</p>
|
2929
|
+
<p>
|
2930
|
+
This style property allows the theme to prepend a character
|
2931
|
+
to the list of candidates.
|
2932
|
+
</p>
|
2933
|
+
<p>Default value: 0</p>
|
2934
|
+
<p class="since">Since 2.18</p>
|
2935
|
+
</div>
|
2936
|
+
<hr>
|
2937
|
+
<div class="refsect2">
|
2938
|
+
<a name="GtkEntry--s-progress-border"></a><h3>The <code class="literal">"progress-border"</code> style property</h3>
|
2939
|
+
<pre class="programlisting"> "progress-border" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read</pre>
|
2940
|
+
<p>
|
2941
|
+
The border around the progress bar in the entry.
|
2942
|
+
</p>
|
2943
|
+
<p class="since">Since 2.16</p>
|
2944
|
+
</div>
|
2945
|
+
<hr>
|
2946
|
+
<div class="refsect2">
|
2947
|
+
<a name="GtkEntry--s-state-hint"></a><h3>The <code class="literal">"state-hint"</code> style property</h3>
|
2948
|
+
<pre class="programlisting"> "state-hint" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
|
2949
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2950
|
+
<h3 class="title">Warning</h3>
|
2951
|
+
<p><code class="literal">GtkEntry:state-hint</code> has been deprecated since version 2.22 and should not be used in newly-written code. This style property will be removed in GTK+ 3</p>
|
2952
|
+
</div>
|
2953
|
+
<p>
|
2954
|
+
Indicates whether to pass a proper widget state when
|
2955
|
+
drawing the shadow and the widget background.
|
2956
|
+
</p>
|
2957
|
+
<p>Default value: FALSE</p>
|
2958
|
+
<p class="since">Since 2.16</p>
|
2959
|
+
</div>
|
2960
|
+
</div>
|
2961
|
+
<div class="refsect1">
|
2962
|
+
<a name="GtkEntry.signal-details"></a><h2>Signal Details</h2>
|
2963
|
+
<div class="refsect2">
|
2964
|
+
<a name="GtkEntry-activate"></a><h3>The <code class="literal">"activate"</code> signal</h3>
|
2965
|
+
<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,
|
2966
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
2967
|
+
<p>
|
2968
|
+
A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
2969
|
+
which gets emitted when the user activates the entry.
|
2970
|
+
</p>
|
2971
|
+
<p>
|
2972
|
+
Applications should not connect to it, but may emit it with
|
2973
|
+
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control activation
|
2974
|
+
programmatically.
|
2975
|
+
</p>
|
2976
|
+
<p>
|
2977
|
+
The default bindings for this signal are all forms of the Enter key.
|
2978
|
+
</p>
|
2979
|
+
<div class="variablelist"><table border="0">
|
2980
|
+
<col align="left" valign="top">
|
2981
|
+
<tbody>
|
2982
|
+
<tr>
|
2983
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
2984
|
+
<td>The entry on which the signal is emitted</td>
|
2985
|
+
</tr>
|
2986
|
+
<tr>
|
2987
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2988
|
+
<td>user data set when the signal handler was connected.</td>
|
2989
|
+
</tr>
|
2990
|
+
</tbody>
|
2991
|
+
</table></div>
|
2992
|
+
</div>
|
2993
|
+
<hr>
|
2994
|
+
<div class="refsect2">
|
2995
|
+
<a name="GtkEntry-backspace"></a><h3>The <code class="literal">"backspace"</code> signal</h3>
|
2996
|
+
<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,
|
2997
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
2998
|
+
<p>
|
2999
|
+
The ::backspace signal is a
|
3000
|
+
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
3001
|
+
which gets emitted when the user asks for it.
|
3002
|
+
</p>
|
3003
|
+
<p>
|
3004
|
+
The default bindings for this signal are
|
3005
|
+
Backspace and Shift-Backspace.
|
3006
|
+
</p>
|
3007
|
+
<div class="variablelist"><table border="0">
|
3008
|
+
<col align="left" valign="top">
|
3009
|
+
<tbody>
|
3010
|
+
<tr>
|
3011
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3012
|
+
<td>the object which received the signal</td>
|
3013
|
+
</tr>
|
3014
|
+
<tr>
|
3015
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3016
|
+
<td>user data set when the signal handler was connected.</td>
|
3017
|
+
</tr>
|
3018
|
+
</tbody>
|
3019
|
+
</table></div>
|
3020
|
+
</div>
|
3021
|
+
<hr>
|
3022
|
+
<div class="refsect2">
|
3023
|
+
<a name="GtkEntry-copy-clipboard"></a><h3>The <code class="literal">"copy-clipboard"</code> signal</h3>
|
3024
|
+
<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,
|
3025
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3026
|
+
<p>
|
3027
|
+
The ::copy-clipboard signal is a
|
3028
|
+
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
3029
|
+
which gets emitted to copy the selection to the clipboard.
|
3030
|
+
</p>
|
3031
|
+
<p>
|
3032
|
+
The default bindings for this signal are
|
3033
|
+
Ctrl-c and Ctrl-Insert.
|
3034
|
+
</p>
|
3035
|
+
<div class="variablelist"><table border="0">
|
3036
|
+
<col align="left" valign="top">
|
3037
|
+
<tbody>
|
3038
|
+
<tr>
|
3039
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3040
|
+
<td>the object which received the signal</td>
|
3041
|
+
</tr>
|
3042
|
+
<tr>
|
3043
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3044
|
+
<td>user data set when the signal handler was connected.</td>
|
3045
|
+
</tr>
|
3046
|
+
</tbody>
|
3047
|
+
</table></div>
|
3048
|
+
</div>
|
3049
|
+
<hr>
|
3050
|
+
<div class="refsect2">
|
3051
|
+
<a name="GtkEntry-cut-clipboard"></a><h3>The <code class="literal">"cut-clipboard"</code> signal</h3>
|
3052
|
+
<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,
|
3053
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3054
|
+
<p>
|
3055
|
+
The ::cut-clipboard signal is a
|
3056
|
+
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
3057
|
+
which gets emitted to cut the selection to the clipboard.
|
3058
|
+
</p>
|
3059
|
+
<p>
|
3060
|
+
The default bindings for this signal are
|
3061
|
+
Ctrl-x and Shift-Delete.
|
3062
|
+
</p>
|
3063
|
+
<div class="variablelist"><table border="0">
|
3064
|
+
<col align="left" valign="top">
|
3065
|
+
<tbody>
|
3066
|
+
<tr>
|
3067
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3068
|
+
<td>the object which received the signal</td>
|
3069
|
+
</tr>
|
3070
|
+
<tr>
|
3071
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3072
|
+
<td>user data set when the signal handler was connected.</td>
|
3073
|
+
</tr>
|
3074
|
+
</tbody>
|
3075
|
+
</table></div>
|
3076
|
+
</div>
|
3077
|
+
<hr>
|
3078
|
+
<div class="refsect2">
|
3079
|
+
<a name="GtkEntry-delete-from-cursor"></a><h3>The <code class="literal">"delete-from-cursor"</code> signal</h3>
|
3080
|
+
<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,
|
3081
|
+
<a class="link" href="gtk-Standard-Enumerations.html#GtkDeleteType" title="enum GtkDeleteType"><span class="type">GtkDeleteType</span></a> type,
|
3082
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
|
3083
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3084
|
+
<p>
|
3085
|
+
The ::delete-from-cursor signal is a
|
3086
|
+
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
3087
|
+
which gets emitted when the user initiates a text deletion.
|
3088
|
+
</p>
|
3089
|
+
<p>
|
3090
|
+
If the <em class="parameter"><code>type</code></em> is <code class="literal">GTK_DELETE_CHARS</code>, GTK+ deletes the selection
|
3091
|
+
if there is one, otherwise it deletes the requested number
|
3092
|
+
of characters.
|
3093
|
+
</p>
|
3094
|
+
<p>
|
3095
|
+
The default bindings for this signal are
|
3096
|
+
Delete for deleting a character and Ctrl-Delete for
|
3097
|
+
deleting a word.
|
3098
|
+
</p>
|
3099
|
+
<div class="variablelist"><table border="0">
|
3100
|
+
<col align="left" valign="top">
|
3101
|
+
<tbody>
|
3102
|
+
<tr>
|
3103
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3104
|
+
<td>the object which received the signal</td>
|
3105
|
+
</tr>
|
3106
|
+
<tr>
|
3107
|
+
<td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
|
3108
|
+
<td>the granularity of the deletion, as a <a class="link" href="gtk-Standard-Enumerations.html#GtkDeleteType" title="enum GtkDeleteType"><span class="type">GtkDeleteType</span></a>
|
3109
|
+
</td>
|
3110
|
+
</tr>
|
3111
|
+
<tr>
|
3112
|
+
<td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
|
3113
|
+
<td>the number of <em class="parameter"><code>type</code></em> units to delete</td>
|
3114
|
+
</tr>
|
3115
|
+
<tr>
|
3116
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3117
|
+
<td>user data set when the signal handler was connected.</td>
|
3118
|
+
</tr>
|
3119
|
+
</tbody>
|
3120
|
+
</table></div>
|
3121
|
+
</div>
|
3122
|
+
<hr>
|
3123
|
+
<div class="refsect2">
|
3124
|
+
<a name="GtkEntry-icon-press"></a><h3>The <code class="literal">"icon-press"</code> signal</h3>
|
3125
|
+
<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,
|
3126
|
+
<a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos,
|
3127
|
+
<a href="../gdk/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
|
3128
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
|
3129
|
+
<p>
|
3130
|
+
The ::icon-press signal is emitted when an activatable icon
|
3131
|
+
is clicked.
|
3132
|
+
</p>
|
3133
|
+
<div class="variablelist"><table border="0">
|
3134
|
+
<col align="left" valign="top">
|
3135
|
+
<tbody>
|
3136
|
+
<tr>
|
3137
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3138
|
+
<td>The entry on which the signal is emitted</td>
|
3139
|
+
</tr>
|
3140
|
+
<tr>
|
3141
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
3142
|
+
<td>The position of the clicked icon</td>
|
3143
|
+
</tr>
|
3144
|
+
<tr>
|
3145
|
+
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
3146
|
+
<td>the button press event</td>
|
3147
|
+
</tr>
|
3148
|
+
<tr>
|
3149
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3150
|
+
<td>user data set when the signal handler was connected.</td>
|
3151
|
+
</tr>
|
3152
|
+
</tbody>
|
3153
|
+
</table></div>
|
3154
|
+
<p class="since">Since 2.16</p>
|
3155
|
+
</div>
|
3156
|
+
<hr>
|
3157
|
+
<div class="refsect2">
|
3158
|
+
<a name="GtkEntry-icon-release"></a><h3>The <code class="literal">"icon-release"</code> signal</h3>
|
3159
|
+
<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,
|
3160
|
+
<a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos,
|
3161
|
+
<a href="../gdk/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
|
3162
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
|
3163
|
+
<p>
|
3164
|
+
The ::icon-release signal is emitted on the button release from a
|
3165
|
+
mouse click over an activatable icon.
|
3166
|
+
</p>
|
3167
|
+
<div class="variablelist"><table border="0">
|
3168
|
+
<col align="left" valign="top">
|
3169
|
+
<tbody>
|
3170
|
+
<tr>
|
3171
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3172
|
+
<td>The entry on which the signal is emitted</td>
|
3173
|
+
</tr>
|
3174
|
+
<tr>
|
3175
|
+
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
3176
|
+
<td>The position of the clicked icon</td>
|
3177
|
+
</tr>
|
3178
|
+
<tr>
|
3179
|
+
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
3180
|
+
<td>the button release event</td>
|
3181
|
+
</tr>
|
3182
|
+
<tr>
|
3183
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3184
|
+
<td>user data set when the signal handler was connected.</td>
|
3185
|
+
</tr>
|
3186
|
+
</tbody>
|
3187
|
+
</table></div>
|
3188
|
+
<p class="since">Since 2.16</p>
|
3189
|
+
</div>
|
3190
|
+
<hr>
|
3191
|
+
<div class="refsect2">
|
3192
|
+
<a name="GtkEntry-insert-at-cursor"></a><h3>The <code class="literal">"insert-at-cursor"</code> signal</h3>
|
3193
|
+
<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,
|
3194
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *string,
|
3195
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3196
|
+
<p>
|
3197
|
+
The ::insert-at-cursor signal is a
|
3198
|
+
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
3199
|
+
which gets emitted when the user initiates the insertion of a
|
3200
|
+
fixed string at the cursor.
|
3201
|
+
</p>
|
3202
|
+
<p>
|
3203
|
+
This signal has no default bindings.
|
3204
|
+
</p>
|
3205
|
+
<div class="variablelist"><table border="0">
|
3206
|
+
<col align="left" valign="top">
|
3207
|
+
<tbody>
|
3208
|
+
<tr>
|
3209
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3210
|
+
<td>the object which received the signal</td>
|
3211
|
+
</tr>
|
3212
|
+
<tr>
|
3213
|
+
<td><p><span class="term"><em class="parameter"><code>string</code></em> :</span></p></td>
|
3214
|
+
<td>the string to insert</td>
|
3215
|
+
</tr>
|
3216
|
+
<tr>
|
3217
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3218
|
+
<td>user data set when the signal handler was connected.</td>
|
3219
|
+
</tr>
|
3220
|
+
</tbody>
|
3221
|
+
</table></div>
|
3222
|
+
</div>
|
3223
|
+
<hr>
|
3224
|
+
<div class="refsect2">
|
3225
|
+
<a name="GtkEntry-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
|
3226
|
+
<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,
|
3227
|
+
<a class="link" href="gtk-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
|
3228
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
|
3229
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> extend_selection,
|
3230
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3231
|
+
<p>
|
3232
|
+
The ::move-cursor signal is a
|
3233
|
+
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
3234
|
+
which gets emitted when the user initiates a cursor movement.
|
3235
|
+
If the cursor is not visible in <em class="parameter"><code>entry</code></em>, this signal causes
|
3236
|
+
the viewport to be moved instead.
|
3237
|
+
</p>
|
3238
|
+
<p>
|
3239
|
+
Applications should not connect to it, but may emit it with
|
3240
|
+
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control the cursor
|
3241
|
+
programmatically.
|
3242
|
+
</p>
|
3243
|
+
<p>
|
3244
|
+
The default bindings for this signal come in two variants,
|
3245
|
+
the variant with the Shift modifier extends the selection,
|
3246
|
+
the variant without the Shift modifer does not.
|
3247
|
+
There are too many key combinations to list them all here.
|
3248
|
+
</p>
|
3249
|
+
<div class="itemizedlist"><ul class="itemizedlist" type="disc">
|
3250
|
+
<li class="listitem">Arrow keys move by individual characters/lines</li>
|
3251
|
+
<li class="listitem">Ctrl-arrow key combinations move by words/paragraphs</li>
|
3252
|
+
<li class="listitem">Home/End keys move to the ends of the buffer</li>
|
3253
|
+
</ul></div>
|
3254
|
+
<p>
|
3255
|
+
</p>
|
3256
|
+
<div class="variablelist"><table border="0">
|
3257
|
+
<col align="left" valign="top">
|
3258
|
+
<tbody>
|
3259
|
+
<tr>
|
3260
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3261
|
+
<td>the object which received the signal</td>
|
3262
|
+
</tr>
|
3263
|
+
<tr>
|
3264
|
+
<td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
|
3265
|
+
<td>the granularity of the move, as a <a class="link" href="gtk-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a>
|
3266
|
+
</td>
|
3267
|
+
</tr>
|
3268
|
+
<tr>
|
3269
|
+
<td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
|
3270
|
+
<td>the number of <em class="parameter"><code>step</code></em> units to move</td>
|
3271
|
+
</tr>
|
3272
|
+
<tr>
|
3273
|
+
<td><p><span class="term"><em class="parameter"><code>extend_selection</code></em> :</span></p></td>
|
3274
|
+
<td>
|
3275
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the move should extend the selection</td>
|
3276
|
+
</tr>
|
3277
|
+
<tr>
|
3278
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3279
|
+
<td>user data set when the signal handler was connected.</td>
|
3280
|
+
</tr>
|
3281
|
+
</tbody>
|
3282
|
+
</table></div>
|
3283
|
+
</div>
|
3284
|
+
<hr>
|
3285
|
+
<div class="refsect2">
|
3286
|
+
<a name="GtkEntry-paste-clipboard"></a><h3>The <code class="literal">"paste-clipboard"</code> signal</h3>
|
3287
|
+
<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,
|
3288
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3289
|
+
<p>
|
3290
|
+
The ::paste-clipboard signal is a
|
3291
|
+
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
3292
|
+
which gets emitted to paste the contents of the clipboard
|
3293
|
+
into the text view.
|
3294
|
+
</p>
|
3295
|
+
<p>
|
3296
|
+
The default bindings for this signal are
|
3297
|
+
Ctrl-v and Shift-Insert.
|
3298
|
+
</p>
|
3299
|
+
<div class="variablelist"><table border="0">
|
3300
|
+
<col align="left" valign="top">
|
3301
|
+
<tbody>
|
3302
|
+
<tr>
|
3303
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3304
|
+
<td>the object which received the signal</td>
|
3305
|
+
</tr>
|
3306
|
+
<tr>
|
3307
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3308
|
+
<td>user data set when the signal handler was connected.</td>
|
3309
|
+
</tr>
|
3310
|
+
</tbody>
|
3311
|
+
</table></div>
|
3312
|
+
</div>
|
3313
|
+
<hr>
|
3314
|
+
<div class="refsect2">
|
3315
|
+
<a name="GtkEntry-populate-popup"></a><h3>The <code class="literal">"populate-popup"</code> signal</h3>
|
3316
|
+
<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,
|
3317
|
+
<a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu,
|
3318
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
|
3319
|
+
<p>
|
3320
|
+
The ::populate-popup signal gets emitted before showing the
|
3321
|
+
context menu of the entry.
|
3322
|
+
</p>
|
3323
|
+
<p>
|
3324
|
+
If you need to add items to the context menu, connect
|
3325
|
+
to this signal and append your menuitems to the <em class="parameter"><code>menu</code></em>.
|
3326
|
+
</p>
|
3327
|
+
<div class="variablelist"><table border="0">
|
3328
|
+
<col align="left" valign="top">
|
3329
|
+
<tbody>
|
3330
|
+
<tr>
|
3331
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3332
|
+
<td>The entry on which the signal is emitted</td>
|
3333
|
+
</tr>
|
3334
|
+
<tr>
|
3335
|
+
<td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
|
3336
|
+
<td>the menu that is being populated</td>
|
3337
|
+
</tr>
|
3338
|
+
<tr>
|
3339
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3340
|
+
<td>user data set when the signal handler was connected.</td>
|
3341
|
+
</tr>
|
3342
|
+
</tbody>
|
3343
|
+
</table></div>
|
3344
|
+
</div>
|
3345
|
+
<hr>
|
3346
|
+
<div class="refsect2">
|
3347
|
+
<a name="GtkEntry-preedit-changed"></a><h3>The <code class="literal">"preedit-changed"</code> signal</h3>
|
3348
|
+
<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,
|
3349
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *preedit,
|
3350
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3351
|
+
<p>
|
3352
|
+
If an input method is used, the typed text will not immediately
|
3353
|
+
be committed to the buffer. So if you are interested in the text,
|
3354
|
+
connect to this signal.
|
3355
|
+
</p>
|
3356
|
+
<div class="variablelist"><table border="0">
|
3357
|
+
<col align="left" valign="top">
|
3358
|
+
<tbody>
|
3359
|
+
<tr>
|
3360
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3361
|
+
<td>the object which received the signal</td>
|
3362
|
+
</tr>
|
3363
|
+
<tr>
|
3364
|
+
<td><p><span class="term"><em class="parameter"><code>preedit</code></em> :</span></p></td>
|
3365
|
+
<td>the current preedit string</td>
|
3366
|
+
</tr>
|
3367
|
+
<tr>
|
3368
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3369
|
+
<td>user data set when the signal handler was connected.</td>
|
3370
|
+
</tr>
|
3371
|
+
</tbody>
|
3372
|
+
</table></div>
|
3373
|
+
<p class="since">Since 2.20</p>
|
3374
|
+
</div>
|
3375
|
+
<hr>
|
3376
|
+
<div class="refsect2">
|
3377
|
+
<a name="GtkEntry-toggle-overwrite"></a><h3>The <code class="literal">"toggle-overwrite"</code> signal</h3>
|
3378
|
+
<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,
|
3379
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3380
|
+
<p>
|
3381
|
+
The ::toggle-overwrite signal is a
|
3382
|
+
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
3383
|
+
which gets emitted to toggle the overwrite mode of the entry.
|
3384
|
+
</p>
|
3385
|
+
<p>
|
3386
|
+
The default bindings for this signal is Insert.
|
3387
|
+
</p>
|
3388
|
+
<div class="variablelist"><table border="0">
|
3389
|
+
<col align="left" valign="top">
|
3390
|
+
<tbody>
|
3391
|
+
<tr>
|
3392
|
+
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3393
|
+
<td>the object which received the signal</td>
|
3394
|
+
</tr>
|
3395
|
+
<tr>
|
3396
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3397
|
+
<td>user data set when the signal handler was connected.</td>
|
3398
|
+
</tr>
|
3399
|
+
</tbody>
|
3400
|
+
</table></div>
|
3401
|
+
</div>
|
3402
|
+
</div>
|
3403
|
+
<div class="refsect1">
|
3404
|
+
<a name="GtkEntry.see-also"></a><h2>See Also</h2>
|
3405
|
+
<p>
|
3406
|
+
</p>
|
3407
|
+
<div class="variablelist"><table border="0">
|
3408
|
+
<col align="left" valign="top">
|
3409
|
+
<tbody>
|
3410
|
+
<tr>
|
3411
|
+
<td><p><span class="term"><a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a></span></p></td>
|
3412
|
+
<td><p>a widget for handling multi-line text entry.</p></td>
|
3413
|
+
</tr>
|
3414
|
+
<tr>
|
3415
|
+
<td><p><span class="term"><a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="type">GtkEntryCompletion</span></a></span></p></td>
|
3416
|
+
<td><p>adds completion functionality to GtkEntry.</p></td>
|
3417
|
+
</tr>
|
3418
|
+
</tbody>
|
3419
|
+
</table></div>
|
3420
|
+
<p>
|
3421
|
+
</p>
|
3422
|
+
</div>
|
3423
|
+
</div>
|
3424
|
+
<div class="footer">
|
3425
|
+
<hr>
|
3426
|
+
Generated by GTK-Doc V1.18</div>
|
3427
|
+
</body>
|
3428
|
+
</html>
|