gtk2 1.0.3-x86-mingw32 → 1.1.0-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +66 -1
- data/ext/gtk2/extconf.rb +0 -96
- data/ext/gtk2/global.h +274 -13
- data/ext/gtk2/gtk2.def +5 -3
- data/ext/gtk2/init.c +263 -19
- data/ext/gtk2/rbgdk.c +245 -89
- data/ext/gtk2/rbgdk.h +32 -6
- data/ext/gtk2/rbgdkatom.c +38 -28
- data/ext/gtk2/rbgdkcairo.c +32 -42
- data/ext/gtk2/rbgdkcolor.c +52 -42
- data/ext/gtk2/rbgdkcolormap.c +42 -37
- data/ext/gtk2/rbgdkconst.c +23 -13
- data/ext/gtk2/rbgdkconversions.h +19 -6
- data/ext/gtk2/rbgdkcursor.c +37 -25
- data/ext/gtk2/rbgdkdevice.c +77 -67
- data/ext/gtk2/rbgdkdisplay.c +158 -150
- data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
- data/ext/gtk2/rbgdkdragcontext.c +121 -70
- data/ext/gtk2/rbgdkdraw.c +252 -160
- data/ext/gtk2/rbgdkevent.c +30 -20
- data/ext/gtk2/rbgdkgc.c +123 -116
- data/ext/gtk2/rbgdkgeometry.c +77 -68
- data/ext/gtk2/rbgdkimage.c +58 -47
- data/ext/gtk2/rbgdkinput.c +33 -26
- data/ext/gtk2/rbgdkkeymap.c +38 -27
- data/ext/gtk2/rbgdkkeyval.c +44 -32
- data/ext/gtk2/rbgdkpango.c +66 -39
- data/ext/gtk2/rbgdkpangorenderer.c +63 -35
- data/ext/gtk2/rbgdkpixbuf.c +36 -25
- data/ext/gtk2/rbgdkpixmap.c +65 -49
- data/ext/gtk2/rbgdkproperty.c +66 -60
- data/ext/gtk2/rbgdkrectangle.c +54 -46
- data/ext/gtk2/rbgdkregion.c +144 -79
- data/ext/gtk2/rbgdkrgb.c +74 -58
- data/ext/gtk2/rbgdkscreen.c +103 -97
- data/ext/gtk2/rbgdkselection.c +49 -39
- data/ext/gtk2/rbgdkthreads.c +32 -19
- data/ext/gtk2/rbgdktimecoord.c +60 -38
- data/ext/gtk2/rbgdkvisual.c +79 -71
- data/ext/gtk2/rbgdkwindow.c +284 -305
- data/ext/gtk2/rbgdkwindowattr.c +69 -58
- data/ext/gtk2/rbgdkx11.c +41 -28
- data/ext/gtk2/rbgtk.c +498 -19
- data/ext/gtk2/rbgtk.h +35 -20
- data/ext/gtk2/rbgtkaboutdialog.c +33 -80
- data/ext/gtk2/rbgtkaccelerator.c +36 -23
- data/ext/gtk2/rbgtkaccelgroup.c +50 -40
- data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
- data/ext/gtk2/rbgtkaccelkey.c +40 -28
- data/ext/gtk2/rbgtkaccellabel.c +30 -18
- data/ext/gtk2/rbgtkaccelmap.c +55 -42
- data/ext/gtk2/rbgtkaccessible.c +25 -14
- data/ext/gtk2/rbgtkaction.c +68 -68
- data/ext/gtk2/rbgtkactiongroup.c +317 -195
- data/ext/gtk2/rbgtkadjustment.c +33 -46
- data/ext/gtk2/rbgtkalignment.c +36 -24
- data/ext/gtk2/rbgtkallocation.c +53 -42
- data/ext/gtk2/rbgtkarrow.c +34 -22
- data/ext/gtk2/rbgtkaspectframe.c +32 -20
- data/ext/gtk2/rbgtkassistant.c +81 -61
- data/ext/gtk2/rbgtkbbox.c +32 -20
- data/ext/gtk2/rbgtkbin.c +28 -16
- data/ext/gtk2/rbgtkbindingset.c +42 -35
- data/ext/gtk2/rbgtkborder.c +34 -23
- data/ext/gtk2/rbgtkbox.c +40 -29
- data/ext/gtk2/rbgtkbuildable.c +57 -45
- data/ext/gtk2/rbgtkbuilder.c +53 -38
- data/ext/gtk2/rbgtkbutton.c +41 -55
- data/ext/gtk2/rbgtkcalendar.c +51 -40
- data/ext/gtk2/rbgtkcelleditable.c +28 -17
- data/ext/gtk2/rbgtkcelllayout.c +41 -30
- data/ext/gtk2/rbgtkcellrenderer.c +43 -32
- data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
- data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
- data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
- data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
- data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
- data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
- data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
- data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
- data/ext/gtk2/rbgtkcellview.c +34 -33
- data/ext/gtk2/rbgtkcheckbutton.c +28 -16
- data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
- data/ext/gtk2/rbgtkclipboard.c +123 -77
- data/ext/gtk2/rbgtkcolorbutton.c +26 -31
- data/ext/gtk2/rbgtkcolorsel.c +109 -55
- data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
- data/ext/gtk2/rbgtkcombo.c +43 -32
- data/ext/gtk2/rbgtkcombobox.c +44 -83
- data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
- data/ext/gtk2/rbgtkconst.c +23 -13
- data/ext/gtk2/rbgtkcontainer.c +153 -100
- data/ext/gtk2/rbgtkconversions.h +19 -6
- data/ext/gtk2/rbgtkcurve.c +46 -36
- data/ext/gtk2/rbgtkdialog.c +104 -70
- data/ext/gtk2/rbgtkdrag.c +173 -121
- data/ext/gtk2/rbgtkdrawingarea.c +28 -16
- data/ext/gtk2/rbgtkeditable.c +63 -51
- data/ext/gtk2/rbgtkentry.c +48 -85
- data/ext/gtk2/rbgtkentrycompletion.c +42 -55
- data/ext/gtk2/rbgtkeventbox.c +28 -16
- data/ext/gtk2/rbgtkexpander.c +26 -35
- data/ext/gtk2/rbgtkfilechooser.c +87 -143
- data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
- data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
- data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
- data/ext/gtk2/rbgtkfilefilter.c +45 -35
- data/ext/gtk2/rbgtkfilesel.c +54 -43
- data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
- data/ext/gtk2/rbgtkfixed.c +36 -25
- data/ext/gtk2/rbgtkfontbutton.c +26 -37
- data/ext/gtk2/rbgtkfontselection.c +27 -15
- data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
- data/ext/gtk2/rbgtkframe.c +39 -28
- data/ext/gtk2/rbgtkgamma.c +32 -20
- data/ext/gtk2/rbgtkhandlebox.c +31 -19
- data/ext/gtk2/rbgtkhbbox.c +28 -16
- data/ext/gtk2/rbgtkhbox.c +29 -17
- data/ext/gtk2/rbgtkhpaned.c +28 -16
- data/ext/gtk2/rbgtkhruler.c +28 -16
- data/ext/gtk2/rbgtkhscale.c +28 -16
- data/ext/gtk2/rbgtkhscrollbar.c +28 -16
- data/ext/gtk2/rbgtkhseparator.c +28 -16
- data/ext/gtk2/rbgtkiconfactory.c +35 -23
- data/ext/gtk2/rbgtkiconinfo.c +42 -30
- data/ext/gtk2/rbgtkiconset.c +31 -19
- data/ext/gtk2/rbgtkiconsize.c +38 -25
- data/ext/gtk2/rbgtkiconsource.c +62 -50
- data/ext/gtk2/rbgtkicontheme.c +95 -95
- data/ext/gtk2/rbgtkiconview.c +87 -121
- data/ext/gtk2/rbgtkimage.c +31 -40
- data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
- data/ext/gtk2/rbgtkimcontext.c +46 -34
- data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
- data/ext/gtk2/rbgtkimmulticontext.c +26 -14
- data/ext/gtk2/rbgtkinputdialog.c +28 -16
- data/ext/gtk2/rbgtkinvisible.c +24 -18
- data/ext/gtk2/rbgtkitem.c +32 -20
- data/ext/gtk2/rbgtkitemfactory.c +65 -57
- data/ext/gtk2/rbgtklabel.c +46 -57
- data/ext/gtk2/rbgtklayout.c +40 -29
- data/ext/gtk2/rbgtklinkbutton.c +26 -15
- data/ext/gtk2/rbgtkliststore.c +145 -102
- data/ext/gtk2/rbgtkmacros.h +19 -6
- data/ext/gtk2/rbgtkmenu.c +47 -59
- data/ext/gtk2/rbgtkmenubar.c +30 -30
- data/ext/gtk2/rbgtkmenuitem.c +34 -41
- data/ext/gtk2/rbgtkmenushell.c +43 -42
- data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
- data/ext/gtk2/rbgtkmessagedialog.c +31 -25
- data/ext/gtk2/rbgtkmisc.c +33 -22
- data/ext/gtk2/rbgtknotebook.c +98 -134
- data/ext/gtk2/rbgtkobject.c +46 -81
- data/ext/gtk2/rbgtkoptionmenu.c +35 -23
- data/ext/gtk2/rbgtkpagesetup.c +64 -54
- data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
- data/ext/gtk2/rbgtkpaned.c +46 -36
- data/ext/gtk2/rbgtkpapersize.c +60 -54
- data/ext/gtk2/rbgtkplug.c +32 -20
- data/ext/gtk2/rbgtkprintcontext.c +43 -35
- data/ext/gtk2/rbgtkprinter.c +36 -37
- data/ext/gtk2/rbgtkprintjob.c +36 -37
- data/ext/gtk2/rbgtkprintoperation.c +44 -33
- data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
- data/ext/gtk2/rbgtkprintsettings.c +248 -192
- data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
- data/ext/gtk2/rbgtkprogress.c +23 -13
- data/ext/gtk2/rbgtkprogressbar.c +47 -46
- data/ext/gtk2/rbgtkradioaction.c +84 -39
- data/ext/gtk2/rbgtkradiobutton.c +33 -21
- data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
- data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
- data/ext/gtk2/rbgtkrange.c +36 -56
- data/ext/gtk2/rbgtkrc.c +61 -49
- data/ext/gtk2/rbgtkrcstyle.c +59 -48
- data/ext/gtk2/rbgtkrecentaction.c +28 -16
- data/ext/gtk2/rbgtkrecentchooser.c +58 -92
- data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
- data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
- data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
- data/ext/gtk2/rbgtkrecentdata.c +47 -36
- data/ext/gtk2/rbgtkrecentfilter.c +55 -46
- data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
- data/ext/gtk2/rbgtkrecentinfo.c +66 -56
- data/ext/gtk2/rbgtkrecentmanager.c +47 -43
- data/ext/gtk2/rbgtkruler.c +35 -30
- data/ext/gtk2/rbgtkscale.c +29 -18
- data/ext/gtk2/rbgtkscalebutton.c +27 -27
- data/ext/gtk2/rbgtkscrollbar.c +23 -13
- data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
- data/ext/gtk2/rbgtkselection.c +87 -67
- data/ext/gtk2/rbgtkselectiondata.c +74 -65
- data/ext/gtk2/rbgtkseparator.c +23 -13
- data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
- data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
- data/ext/gtk2/rbgtksettings.c +123 -103
- data/ext/gtk2/rbgtksizegroup.c +33 -30
- data/ext/gtk2/rbgtksocket.c +32 -20
- data/ext/gtk2/rbgtkspinbutton.c +48 -38
- data/ext/gtk2/rbgtkspinner.c +27 -14
- data/ext/gtk2/rbgtkstatusbar.c +36 -31
- data/ext/gtk2/rbgtkstatusicon.c +31 -44
- data/ext/gtk2/rbgtkstock.c +137 -125
- data/ext/gtk2/rbgtkstyle.c +177 -161
- data/ext/gtk2/rbgtktable.c +58 -47
- data/ext/gtk2/rbgtktargetlist.c +56 -36
- data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
- data/ext/gtk2/rbgtktextappearance.c +44 -34
- data/ext/gtk2/rbgtktextattributes.c +54 -42
- data/ext/gtk2/rbgtktextbuffer.c +188 -191
- data/ext/gtk2/rbgtktextchild.c +29 -18
- data/ext/gtk2/rbgtktextiter.c +153 -145
- data/ext/gtk2/rbgtktextmark.c +33 -30
- data/ext/gtk2/rbgtktexttag.c +34 -22
- data/ext/gtk2/rbgtktexttagtable.c +36 -25
- data/ext/gtk2/rbgtktextview.c +85 -73
- data/ext/gtk2/rbgtktoggleaction.c +27 -22
- data/ext/gtk2/rbgtktogglebutton.c +37 -26
- data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
- data/ext/gtk2/rbgtktoolbar.c +66 -69
- data/ext/gtk2/rbgtktoolbutton.c +27 -40
- data/ext/gtk2/rbgtktoolitem.c +60 -62
- data/ext/gtk2/rbgtktooltip.c +36 -25
- data/ext/gtk2/rbgtktooltips.c +42 -34
- data/ext/gtk2/rbgtktreedragdest.c +20 -11
- data/ext/gtk2/rbgtktreedragsource.c +20 -11
- data/ext/gtk2/rbgtktreeiter.c +58 -47
- data/ext/gtk2/rbgtktreemodel.c +83 -65
- data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
- data/ext/gtk2/rbgtktreemodelsort.c +38 -27
- data/ext/gtk2/rbgtktreepath.c +55 -44
- data/ext/gtk2/rbgtktreerowreference.c +60 -42
- data/ext/gtk2/rbgtktreeselection.c +61 -52
- data/ext/gtk2/rbgtktreesortable.c +52 -42
- data/ext/gtk2/rbgtktreestore.c +88 -67
- data/ext/gtk2/rbgtktreeview.c +157 -185
- data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
- data/ext/gtk2/rbgtkuimanager.c +61 -61
- data/ext/gtk2/rbgtkvbbox.c +28 -16
- data/ext/gtk2/rbgtkvbox.c +29 -17
- data/ext/gtk2/rbgtkviewport.c +28 -16
- data/ext/gtk2/rbgtkvolumebutton.c +28 -16
- data/ext/gtk2/rbgtkvpaned.c +28 -16
- data/ext/gtk2/rbgtkvruler.c +28 -16
- data/ext/gtk2/rbgtkvscale.c +28 -16
- data/ext/gtk2/rbgtkvscrollbar.c +28 -16
- data/ext/gtk2/rbgtkvseparator.c +28 -16
- data/ext/gtk2/rbgtkwidget.c +284 -296
- data/ext/gtk2/rbgtkwindow.c +156 -214
- data/ext/gtk2/rbgtkwindowgroup.c +35 -24
- data/lib/1.8/gtk2.so +0 -0
- data/lib/1.9/gtk2.so +0 -0
- data/sample/testgtk/labels.rb +1 -0
- data/sample/testgtk/testgtk.rb +2 -0
- data/vendor/local/bin/gtk-builder-convert +29 -2
- 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/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 +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdk.h +4 -7
- data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +4 -2
- data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +7 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +7 -4
- data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +2 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +13 -9
- data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +2 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +6 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +16 -6
- data/vendor/local/include/gtk-2.0/gtk/gtk.h +1 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +18 -14
- data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +15 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +3 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +3 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +5 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +9 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +25 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +6 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +2 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +6 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +8 -7
- 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/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 +1 -1
- data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
- data/vendor/local/manifest/{gtk+-dev_2.22.1-1_win32.mft → gtk+-dev_2.24.8-1_win32.mft} +10 -8
- data/vendor/local/manifest/{gtk+_2.22.1-1_win32.mft → gtk+_2.24.8-1_win32.mft} +2 -6
- data/vendor/local/share/doc/{gtk+-2.22.1 → gtk+-2.24.8}/COPYING +0 -0
- data/vendor/local/share/doc/{gtk+-dev-2.22.1 → gtk+-dev-2.24.8}/COPYING +0 -0
- data/vendor/local/share/gtk-2.0/demo/appwindow.c +0 -21
- data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
- data/vendor/local/share/gtk-2.0/demo/editable_cells.c +5 -5
- data/vendor/local/share/gtk-2.0/demo/iconview.c +1 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
- data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +74 -108
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +48 -62
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +154 -211
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +35 -39
- data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +182 -241
- data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +9 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +8 -8
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +26 -26
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +150 -20
- data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +174 -138
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +24 -27
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +136 -136
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +88 -46
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +139 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +76 -95
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +164 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +303 -419
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +324 -439
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +114 -147
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +157 -236
- data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +159 -233
- data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +114 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +170 -252
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +92 -133
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +146 -194
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +37 -55
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +183 -198
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +94 -121
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +100 -158
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +147 -179
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +190 -237
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +100 -137
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +26 -39
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +61 -87
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +86 -111
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +725 -801
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +51 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +75 -158
- data/vendor/local/share/gtk-doc/html/gdk/index.html +10 -13
- data/vendor/local/share/gtk-doc/html/gdk/index.sgml +10 -94
- data/vendor/local/share/gtk-doc/html/gdk/multihead.html +15 -15
- data/vendor/local/share/gtk-doc/html/gdk/reference.html +8 -10
- data/vendor/local/share/gtk-doc/html/gdk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Actions.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Builder.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +228 -212
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +41 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +181 -248
- data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +178 -261
- data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +48 -52
- data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +80 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +32 -38
- data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +38 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +113 -134
- data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +97 -122
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +88 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +100 -139
- data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +156 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +61 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +637 -917
- data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +570 -1841
- data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +130 -165
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +38 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +62 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +136 -160
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +40 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +29 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +33 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +75 -80
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +47 -56
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +32 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +63 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +128 -200
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +31 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +346 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +59 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +170 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +63 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +102 -124
- data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +28 -30
- data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +71 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +389 -491
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +73 -106
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +132 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +80 -100
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +358 -414
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +71 -94
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +32 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +23 -28
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +104 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +43 -54
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +64 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +70 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +54 -63
- data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +55 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +31 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +32 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +67 -92
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +57 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +153 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +213 -271
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +333 -455
- data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +241 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +69 -82
- data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +42 -50
- data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +38 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +185 -276
- data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +201 -251
- data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +72 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +132 -182
- data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +82 -132
- data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +142 -172
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +185 -229
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +43 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +114 -147
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +89 -121
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +75 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +83 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +37 -41
- data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +398 -454
- data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +150 -208
- data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +30 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +82 -167
- data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +117 -162
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +24 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +99 -139
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkPaperSize.html → GtkPaperSize.html} +206 -254
- data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +51 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +122 -149
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +40 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +57 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +284 -413
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +112 -142
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +82 -113
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +93 -110
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +44 -55
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +88 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +65 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +35 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +224 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +36 -43
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +137 -196
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +67 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +219 -286
- data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +85 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +63 -74
- data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +67 -84
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +98 -146
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +26 -29
- data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +134 -264
- data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +40 -47
- data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +52 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +134 -179
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +26 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +221 -285
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +62 -77
- data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +754 -1135
- data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +96 -137
- data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +105 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +527 -685
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkTextIter.html → GtkTextIter.html} +666 -807
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +43 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +180 -210
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +86 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +355 -439
- data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +45 -59
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +61 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +34 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +82 -93
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +135 -168
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +86 -105
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +121 -144
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +44 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +251 -362
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +37 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +62 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +107 -154
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +48 -136
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +434 -566
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +97 -127
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +65 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +125 -173
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +173 -202
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +588 -867
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +209 -288
- data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +127 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +29 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +33 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +26 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +18 -19
- data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1499 -1795
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +447 -597
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +23 -41
- data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +8 -5
- data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Printing.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +20 -14
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +8 -8
- 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 +31 -31
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +239 -48
- data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +476 -388
- data/vendor/local/share/gtk-doc/html/gtk/ch01.html +17 -6
- data/vendor/local/share/gtk-doc/html/gtk/ch02.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +19 -19
- data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/glossary.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +78 -133
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +172 -234
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +235 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +248 -318
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +37 -43
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +54 -60
- data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +295 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +36 -42
- data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +80 -85
- data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +225 -293
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +180 -268
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +159 -195
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +377 -450
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +192 -308
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +55 -55
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +154 -158
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +95 -143
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +212 -243
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +273 -345
- data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +20 -13
- data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +22 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +65 -77
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +62 -79
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +7 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +115 -115
- data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +11 -11
- data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +60 -33
- data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +14 -14
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +440 -413
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +483 -456
- data/vendor/local/share/gtk-doc/html/gtk/gtk.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +11 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/index.html +16 -12
- data/vendor/local/share/gtk-doc/html/gtk/index.sgml +189 -142
- data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/migrating.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/pt05.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/{document-x-generic.png → text-x-generic.png} +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +5 -5
- data/vendor/local/share/icons/hicolor/index.theme +1662 -0
- data/vendor/local/share/locale/be/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/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/cs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.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/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/gl/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/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/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/nb/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nl/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/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/sl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.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.mo +0 -0
- data/vendor/local/src/dieterv/packaging/gtk+_2.24.8-1_win32.log +4937 -0
- data/vendor/local/src/{tml/packaging/gtk+_2.22.1-1_win32.sh → dieterv/packaging/gtk+_2.24.8-1_win32.sh} +8 -8
- metadata +29 -31
- data/ChangeLog +0 -6902
- data/ext/gtk2/rbgtkmain.c +0 -493
- data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +0 -2500
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +0 -5048
@@ -4,11 +4,11 @@
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>GtkEntry</title>
|
6
6
|
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
|
7
|
-
<link rel="home" href="index.html" title="GTK+ Reference Manual">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
|
8
8
|
<link rel="up" href="NumericEntry.html" title="Numeric/Text Data Entry">
|
9
9
|
<link rel="prev" href="NumericEntry.html" title="Numeric/Text Data Entry">
|
10
10
|
<link rel="next" href="GtkEntryBuffer.html" title="GtkEntryBuffer">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<td><a accesskey="p" href="NumericEntry.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="NumericEntry.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
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+ Reference Manual</th>
|
20
|
+
<th width="100%" align="center">GTK+ 2 Reference Manual</th>
|
21
21
|
<td><a accesskey="n" href="GtkEntryBuffer.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
22
|
</tr>
|
23
23
|
<tr><td colspan="5" class="shortcuts">
|
@@ -36,7 +36,7 @@
|
|
36
36
|
<a href="#GtkEntry.signals" class="shortcut">Signals</a>
|
37
37
|
</td></tr>
|
38
38
|
</table>
|
39
|
-
<div class="refentry"
|
39
|
+
<div class="refentry">
|
40
40
|
<a name="GtkEntry"></a><div class="titlepage"></div>
|
41
41
|
<div class="refnamediv"><table width="100%"><tr>
|
42
42
|
<td valign="top">
|
@@ -45,16 +45,16 @@
|
|
45
45
|
</td>
|
46
46
|
<td valign="top" align="right"><img src="entry.png"></td>
|
47
47
|
</tr></table></div>
|
48
|
-
<div class="refsynopsisdiv"
|
48
|
+
<div class="refsynopsisdiv">
|
49
49
|
<a name="GtkEntry.synopsis"></a><h2>Synopsis</h2>
|
50
50
|
<pre class="synopsis">
|
51
51
|
#include <gtk/gtk.h>
|
52
52
|
|
53
|
-
|
54
|
-
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
55
|
-
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
56
|
-
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
57
|
-
<a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="returnvalue">GtkEntryBuffer</span></a
|
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
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
59
|
<em class="parameter"><code><a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> *buffer</code></em>);
|
60
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>,
|
@@ -65,7 +65,7 @@
|
|
65
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
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
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
|
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
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
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
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>,
|
@@ -81,14 +81,14 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
|
|
81
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
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
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"
|
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
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
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
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
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
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
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"
|
91
|
+
<em class="parameter"><code>const <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a> *border</code></em>);
|
92
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
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
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>);
|
@@ -98,7 +98,7 @@ const <a class="link" href="GtkStyle.html#GtkBorder" title="GtkBorder"><span cla
|
|
98
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
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
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
|
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
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
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
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>);
|
@@ -115,7 +115,7 @@ const <a class="link" href="GtkStyle.html#GtkBorder" title="GtkBorder"><span cla
|
|
115
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
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
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
|
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
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
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
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>);
|
@@ -125,12 +125,12 @@ const <a class="link" href="GtkStyle.html#GtkBorder" title="GtkBorder"><span cla
|
|
125
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
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
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="http://library.gnome.org/devel/
|
128
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>);
|
129
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
130
|
enum <a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition">GtkEntryIconPosition</a>;
|
131
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
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-
|
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
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
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
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>);
|
@@ -142,13 +142,13 @@ enum <a class="link" href="GtkEntry.html#GtkEntryIconPosition" ti
|
|
142
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
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
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-
|
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
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
|
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
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
|
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
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
|
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
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
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
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>,
|
@@ -175,16 +175,16 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
|
|
175
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
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
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"
|
179
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
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="http://library.gnome.org/devel/gdk3/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);
|
180
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
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="http://library.gnome.org/devel/
|
182
|
+
<a href="http://library.gnome.org/devel/gdk3/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
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="http://library.gnome.org/devel/
|
184
|
+
<a href="http://library.gnome.org/devel/gdk3/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
185
|
</pre>
|
186
186
|
</div>
|
187
|
-
<div class="refsect1"
|
187
|
+
<div class="refsect1">
|
188
188
|
<a name="GtkEntry.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
189
189
|
<pre class="synopsis">
|
190
190
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
@@ -195,13 +195,13 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
|
|
195
195
|
+----<a class="link" href="GtkSpinButton.html" title="GtkSpinButton">GtkSpinButton</a>
|
196
196
|
</pre>
|
197
197
|
</div>
|
198
|
-
<div class="refsect1"
|
198
|
+
<div class="refsect1">
|
199
199
|
<a name="GtkEntry.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
200
200
|
<p>
|
201
201
|
GtkEntry implements
|
202
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
203
|
</div>
|
204
|
-
<div class="refsect1"
|
204
|
+
<div class="refsect1">
|
205
205
|
<a name="GtkEntry.properties"></a><h2>Properties</h2>
|
206
206
|
<pre class="synopsis">
|
207
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
|
@@ -211,7 +211,7 @@ GtkEntry implements
|
|
211
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
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
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"
|
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
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
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
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
|
@@ -219,7 +219,7 @@ GtkEntry implements
|
|
219
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
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
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-
|
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
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
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
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
|
@@ -231,7 +231,7 @@ GtkEntry implements
|
|
231
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
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
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-
|
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
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
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
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
|
@@ -247,35 +247,35 @@ GtkEntry implements
|
|
247
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
248
|
</pre>
|
249
249
|
</div>
|
250
|
-
<div class="refsect1"
|
250
|
+
<div class="refsect1">
|
251
251
|
<a name="GtkEntry.style-properties"></a><h2>Style Properties</h2>
|
252
252
|
<pre class="synopsis">
|
253
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"
|
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
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"
|
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
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
258
|
</pre>
|
259
259
|
</div>
|
260
|
-
<div class="refsect1"
|
260
|
+
<div class="refsect1">
|
261
261
|
<a name="GtkEntry.signals"></a><h2>Signals</h2>
|
262
262
|
<pre class="synopsis">
|
263
|
-
"<a class="link" href="GtkEntry.html#GtkEntry-activate" title='The "activate" signal'>activate</a>" :
|
264
|
-
"<a class="link" href="GtkEntry.html#GtkEntry-backspace" title='The "backspace" signal'>backspace</a>" :
|
265
|
-
"<a class="link" href="GtkEntry.html#GtkEntry-copy-clipboard" title='The "copy-clipboard" signal'>copy-clipboard</a>" :
|
266
|
-
"<a class="link" href="GtkEntry.html#GtkEntry-cut-clipboard" title='The "cut-clipboard" signal'>cut-clipboard</a>" :
|
267
|
-
"<a class="link" href="GtkEntry.html#GtkEntry-delete-from-cursor" title='The "delete-from-cursor" signal'>delete-from-cursor</a>" :
|
268
|
-
"<a class="link" href="GtkEntry.html#GtkEntry-icon-press" title='The "icon-press" signal'>icon-press</a>" : Run Last
|
269
|
-
"<a class="link" href="GtkEntry.html#GtkEntry-icon-release" title='The "icon-release" signal'>icon-release</a>" : Run Last
|
270
|
-
"<a class="link" href="GtkEntry.html#GtkEntry-insert-at-cursor" title='The "insert-at-cursor" signal'>insert-at-cursor</a>" :
|
271
|
-
"<a class="link" href="GtkEntry.html#GtkEntry-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" :
|
272
|
-
"<a class="link" href="GtkEntry.html#GtkEntry-paste-clipboard" title='The "paste-clipboard" signal'>paste-clipboard</a>" :
|
273
|
-
"<a class="link" href="GtkEntry.html#GtkEntry-populate-popup" title='The "populate-popup" signal'>populate-popup</a>" : Run Last
|
274
|
-
"<a class="link" href="GtkEntry.html#GtkEntry-preedit-changed" title='The "preedit-changed" signal'>preedit-changed</a>" :
|
275
|
-
"<a class="link" href="GtkEntry.html#GtkEntry-toggle-overwrite" title='The "toggle-overwrite" signal'>toggle-overwrite</a>" :
|
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
276
|
</pre>
|
277
277
|
</div>
|
278
|
-
<div class="refsect1"
|
278
|
+
<div class="refsect1">
|
279
279
|
<a name="GtkEntry.description"></a><h2>Description</h2>
|
280
280
|
<p>
|
281
281
|
The <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> widget is a single line text entry
|
@@ -319,19 +319,19 @@ that any such functionality should also be available by other means, e.g.
|
|
319
319
|
via the context menu of the entry.
|
320
320
|
</p>
|
321
321
|
</div>
|
322
|
-
<div class="refsect1"
|
322
|
+
<div class="refsect1">
|
323
323
|
<a name="GtkEntry.details"></a><h2>Details</h2>
|
324
|
-
<div class="refsect2"
|
325
|
-
<a name="GtkEntry-struct"></a><h3>GtkEntry</h3>
|
326
|
-
<pre class="programlisting">
|
324
|
+
<div class="refsect2">
|
325
|
+
<a name="GtkEntry-struct"></a><h3>struct GtkEntry</h3>
|
326
|
+
<pre class="programlisting">struct GtkEntry;</pre>
|
327
327
|
<p>
|
328
|
-
The <a class="link" href="GtkEntry.html#GtkEntry-struct" title="GtkEntry"><span class="type">GtkEntry</span></a> struct contains only private data.
|
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
329
|
</p>
|
330
330
|
</div>
|
331
331
|
<hr>
|
332
|
-
<div class="refsect2"
|
332
|
+
<div class="refsect2">
|
333
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
|
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
335
|
<p>
|
336
336
|
Creates a new entry.
|
337
337
|
</p>
|
@@ -339,15 +339,14 @@ Creates a new entry.
|
|
339
339
|
<col align="left" valign="top">
|
340
340
|
<tbody><tr>
|
341
341
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
342
|
-
<td>
|
343
|
-
</td>
|
342
|
+
<td>a new <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>.</td>
|
344
343
|
</tr></tbody>
|
345
344
|
</table></div>
|
346
345
|
</div>
|
347
346
|
<hr>
|
348
|
-
<div class="refsect2"
|
347
|
+
<div class="refsect2">
|
349
348
|
<a name="gtk-entry-new-with-buffer"></a><h3>gtk_entry_new_with_buffer ()</h3>
|
350
|
-
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
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>
|
351
350
|
<p>
|
352
351
|
Creates a new entry with the specified text buffer.
|
353
352
|
</p>
|
@@ -356,13 +355,11 @@ Creates a new entry with the specified text buffer.
|
|
356
355
|
<tbody>
|
357
356
|
<tr>
|
358
357
|
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
359
|
-
<td>The buffer to use for the new <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a
|
360
|
-
</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>
|
361
359
|
</tr>
|
362
360
|
<tr>
|
363
361
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
364
|
-
<td>
|
365
|
-
|
362
|
+
<td>a new <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
366
363
|
</td>
|
367
364
|
</tr>
|
368
365
|
</tbody>
|
@@ -370,10 +367,10 @@ Creates a new entry with the specified text buffer.
|
|
370
367
|
<p class="since">Since 2.18</p>
|
371
368
|
</div>
|
372
369
|
<hr>
|
373
|
-
<div class="refsect2"
|
370
|
+
<div class="refsect2">
|
374
371
|
<a name="gtk-entry-new-with-max-length"></a><h3>gtk_entry_new_with_max_length ()</h3>
|
375
|
-
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a
|
376
|
-
<div class="warning"
|
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;">
|
377
374
|
<h3 class="title">Warning</h3>
|
378
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>
|
379
376
|
</div>
|
@@ -386,23 +383,21 @@ Creates a new <a class="link" href="GtkEntry.html" title="GtkEntry"><span class=
|
|
386
383
|
<tr>
|
387
384
|
<td><p><span class="term"><em class="parameter"><code>max</code></em> :</span></p></td>
|
388
385
|
<td>the maximum length of the entry, or 0 for no maximum.
|
389
|
-
|
390
|
-
|
391
|
-
</td>
|
386
|
+
(other than the maximum length of entries.) The value passed in will
|
387
|
+
be clamped to the range 0-65536.</td>
|
392
388
|
</tr>
|
393
389
|
<tr>
|
394
390
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
395
|
-
<td>
|
396
|
-
|
391
|
+
<td>a new <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>
|
397
392
|
</td>
|
398
393
|
</tr>
|
399
394
|
</tbody>
|
400
395
|
</table></div>
|
401
396
|
</div>
|
402
397
|
<hr>
|
403
|
-
<div class="refsect2"
|
398
|
+
<div class="refsect2">
|
404
399
|
<a name="gtk-entry-get-buffer"></a><h3>gtk_entry_get_buffer ()</h3>
|
405
|
-
<pre class="programlisting"><a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="returnvalue">GtkEntryBuffer</span></a
|
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>
|
406
401
|
<p>
|
407
402
|
Get the <a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> object which holds the text for
|
408
403
|
this widget.
|
@@ -417,7 +412,7 @@ this widget.
|
|
417
412
|
</tr>
|
418
413
|
<tr>
|
419
414
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
420
|
-
<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>
|
421
416
|
</td>
|
422
417
|
</tr>
|
423
418
|
</tbody>
|
@@ -425,7 +420,7 @@ this widget.
|
|
425
420
|
<p class="since">Since 2.18</p>
|
426
421
|
</div>
|
427
422
|
<hr>
|
428
|
-
<div class="refsect2"
|
423
|
+
<div class="refsect2">
|
429
424
|
<a name="gtk-entry-set-buffer"></a><h3>gtk_entry_set_buffer ()</h3>
|
430
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>,
|
431
426
|
<em class="parameter"><code><a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a> *buffer</code></em>);</pre>
|
@@ -451,7 +446,7 @@ this widget.
|
|
451
446
|
<p class="since">Since 2.18</p>
|
452
447
|
</div>
|
453
448
|
<hr>
|
454
|
-
<div class="refsect2"
|
449
|
+
<div class="refsect2">
|
455
450
|
<a name="gtk-entry-set-text"></a><h3>gtk_entry_set_text ()</h3>
|
456
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>,
|
457
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>
|
@@ -472,18 +467,17 @@ See <a class="link" href="GtkEntryBuffer.html#gtk-entry-buffer-set-text" title="
|
|
472
467
|
</tr>
|
473
468
|
<tr>
|
474
469
|
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
475
|
-
<td>the new text
|
476
|
-
</td>
|
470
|
+
<td>the new text</td>
|
477
471
|
</tr>
|
478
472
|
</tbody>
|
479
473
|
</table></div>
|
480
474
|
</div>
|
481
475
|
<hr>
|
482
|
-
<div class="refsect2"
|
476
|
+
<div class="refsect2">
|
483
477
|
<a name="gtk-entry-append-text"></a><h3>gtk_entry_append_text ()</h3>
|
484
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>,
|
485
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>
|
486
|
-
<div class="warning"
|
480
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
487
481
|
<h3 class="title">Warning</h3>
|
488
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>
|
489
483
|
</div>
|
@@ -500,18 +494,17 @@ Appends the given text to the contents of the widget.
|
|
500
494
|
</tr>
|
501
495
|
<tr>
|
502
496
|
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
503
|
-
<td>the text to append
|
504
|
-
</td>
|
497
|
+
<td>the text to append</td>
|
505
498
|
</tr>
|
506
499
|
</tbody>
|
507
500
|
</table></div>
|
508
501
|
</div>
|
509
502
|
<hr>
|
510
|
-
<div class="refsect2"
|
503
|
+
<div class="refsect2">
|
511
504
|
<a name="gtk-entry-prepend-text"></a><h3>gtk_entry_prepend_text ()</h3>
|
512
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>,
|
513
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>
|
514
|
-
<div class="warning"
|
507
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
515
508
|
<h3 class="title">Warning</h3>
|
516
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>
|
517
510
|
</div>
|
@@ -528,18 +521,17 @@ Prepends the given text to the contents of the widget.
|
|
528
521
|
</tr>
|
529
522
|
<tr>
|
530
523
|
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
531
|
-
<td>the text to prepend
|
532
|
-
</td>
|
524
|
+
<td>the text to prepend</td>
|
533
525
|
</tr>
|
534
526
|
</tbody>
|
535
527
|
</table></div>
|
536
528
|
</div>
|
537
529
|
<hr>
|
538
|
-
<div class="refsect2"
|
530
|
+
<div class="refsect2">
|
539
531
|
<a name="gtk-entry-set-position"></a><h3>gtk_entry_set_position ()</h3>
|
540
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>,
|
541
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>
|
542
|
-
<div class="warning"
|
534
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
543
535
|
<h3 class="title">Warning</h3>
|
544
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>
|
545
537
|
</div>
|
@@ -557,20 +549,19 @@ Sets the cursor position in an entry to the given value.
|
|
557
549
|
<tr>
|
558
550
|
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
559
551
|
<td>the position of the cursor. The cursor is displayed
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
</td>
|
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>
|
566
557
|
</tr>
|
567
558
|
</tbody>
|
568
559
|
</table></div>
|
569
560
|
</div>
|
570
561
|
<hr>
|
571
|
-
<div class="refsect2"
|
562
|
+
<div class="refsect2">
|
572
563
|
<a name="gtk-entry-get-text"></a><h3>gtk_entry_get_text ()</h3>
|
573
|
-
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a
|
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>
|
574
565
|
<p>
|
575
566
|
Retrieves the contents of the entry widget.
|
576
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>.
|
@@ -603,17 +594,16 @@ This is equivalent to:
|
|
603
594
|
</tr>
|
604
595
|
<tr>
|
605
596
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
606
|
-
<td>
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
</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>
|
611
601
|
</tr>
|
612
602
|
</tbody>
|
613
603
|
</table></div>
|
614
604
|
</div>
|
615
605
|
<hr>
|
616
|
-
<div class="refsect2"
|
606
|
+
<div class="refsect2">
|
617
607
|
<a name="gtk-entry-get-text-length"></a><h3>gtk_entry_get_text_length ()</h3>
|
618
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>
|
619
609
|
<p>
|
@@ -648,22 +638,20 @@ This is equivalent to:
|
|
648
638
|
</tr>
|
649
639
|
<tr>
|
650
640
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
651
|
-
<td>
|
652
|
-
|
653
|
-
|
654
|
-
</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>
|
655
643
|
</tr>
|
656
644
|
</tbody>
|
657
645
|
</table></div>
|
658
646
|
<p class="since">Since 2.14</p>
|
659
647
|
</div>
|
660
648
|
<hr>
|
661
|
-
<div class="refsect2"
|
649
|
+
<div class="refsect2">
|
662
650
|
<a name="gtk-entry-select-region"></a><h3>gtk_entry_select_region ()</h3>
|
663
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>,
|
664
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>,
|
665
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>
|
666
|
-
<div class="warning"
|
654
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
667
655
|
<h3 class="title">Warning</h3>
|
668
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>
|
669
657
|
</div>
|
@@ -684,19 +672,17 @@ the text.
|
|
684
672
|
</tr>
|
685
673
|
<tr>
|
686
674
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
687
|
-
<td>the starting position
|
688
|
-
</td>
|
675
|
+
<td>the starting position</td>
|
689
676
|
</tr>
|
690
677
|
<tr>
|
691
678
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
692
|
-
<td>the end position
|
693
|
-
</td>
|
679
|
+
<td>the end position</td>
|
694
680
|
</tr>
|
695
681
|
</tbody>
|
696
682
|
</table></div>
|
697
683
|
</div>
|
698
684
|
<hr>
|
699
|
-
<div class="refsect2"
|
685
|
+
<div class="refsect2">
|
700
686
|
<a name="gtk-entry-set-visibility"></a><h3>gtk_entry_set_visibility ()</h3>
|
701
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>,
|
702
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>
|
@@ -723,14 +709,13 @@ in the current font, but it can be changed with
|
|
723
709
|
<td><p><span class="term"><em class="parameter"><code>visible</code></em> :</span></p></td>
|
724
710
|
<td>
|
725
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
|
726
|
-
|
727
|
-
</td>
|
712
|
+
as plaintext</td>
|
728
713
|
</tr>
|
729
714
|
</tbody>
|
730
715
|
</table></div>
|
731
716
|
</div>
|
732
717
|
<hr>
|
733
|
-
<div class="refsect2"
|
718
|
+
<div class="refsect2">
|
734
719
|
<a name="gtk-entry-set-invisible-char"></a><h3>gtk_entry_set_invisible_char ()</h3>
|
735
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>,
|
736
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>
|
@@ -753,14 +738,13 @@ at all; there will be no text on the screen as they type.
|
|
753
738
|
</tr>
|
754
739
|
<tr>
|
755
740
|
<td><p><span class="term"><em class="parameter"><code>ch</code></em> :</span></p></td>
|
756
|
-
<td>a Unicode character
|
757
|
-
</td>
|
741
|
+
<td>a Unicode character</td>
|
758
742
|
</tr>
|
759
743
|
</tbody>
|
760
744
|
</table></div>
|
761
745
|
</div>
|
762
746
|
<hr>
|
763
|
-
<div class="refsect2"
|
747
|
+
<div class="refsect2">
|
764
748
|
<a name="gtk-entry-unset-invisible-char"></a><h3>gtk_entry_unset_invisible_char ()</h3>
|
765
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>
|
766
750
|
<p>
|
@@ -779,11 +763,11 @@ default invisible char is used again.
|
|
779
763
|
<p class="since">Since 2.16</p>
|
780
764
|
</div>
|
781
765
|
<hr>
|
782
|
-
<div class="refsect2"
|
766
|
+
<div class="refsect2">
|
783
767
|
<a name="gtk-entry-set-editable"></a><h3>gtk_entry_set_editable ()</h3>
|
784
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>,
|
785
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>
|
786
|
-
<div class="warning"
|
770
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
787
771
|
<h3 class="title">Warning</h3>
|
788
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>
|
789
773
|
</div>
|
@@ -803,14 +787,13 @@ widget or not.
|
|
803
787
|
<td><p><span class="term"><em class="parameter"><code>editable</code></em> :</span></p></td>
|
804
788
|
<td>
|
805
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
|
806
|
-
|
807
|
-
</td>
|
790
|
+
in the widget</td>
|
808
791
|
</tr>
|
809
792
|
</tbody>
|
810
793
|
</table></div>
|
811
794
|
</div>
|
812
795
|
<hr>
|
813
|
-
<div class="refsect2"
|
796
|
+
<div class="refsect2">
|
814
797
|
<a name="gtk-entry-set-max-length"></a><h3>gtk_entry_set_max_length ()</h3>
|
815
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>,
|
816
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>
|
@@ -848,15 +831,14 @@ This is equivalent to:
|
|
848
831
|
<tr>
|
849
832
|
<td><p><span class="term"><em class="parameter"><code>max</code></em> :</span></p></td>
|
850
833
|
<td>the maximum length of the entry, or 0 for no maximum.
|
851
|
-
|
852
|
-
|
853
|
-
</td>
|
834
|
+
(other than the maximum length of entries.) The value passed in will
|
835
|
+
be clamped to the range 0-65536.</td>
|
854
836
|
</tr>
|
855
837
|
</tbody>
|
856
838
|
</table></div>
|
857
839
|
</div>
|
858
840
|
<hr>
|
859
|
-
<div class="refsect2"
|
841
|
+
<div class="refsect2">
|
860
842
|
<a name="gtk-entry-get-activates-default"></a><h3>gtk_entry_get_activates_default ()</h3>
|
861
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>
|
862
844
|
<p>
|
@@ -872,14 +854,14 @@ Retrieves the value set by <a class="link" href="GtkEntry.html#gtk-entry-set-act
|
|
872
854
|
</tr>
|
873
855
|
<tr>
|
874
856
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
875
|
-
<td>
|
876
|
-
</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>
|
877
859
|
</tr>
|
878
860
|
</tbody>
|
879
861
|
</table></div>
|
880
862
|
</div>
|
881
863
|
<hr>
|
882
|
-
<div class="refsect2"
|
864
|
+
<div class="refsect2">
|
883
865
|
<a name="gtk-entry-get-has-frame"></a><h3>gtk_entry_get_has_frame ()</h3>
|
884
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>
|
885
867
|
<p>
|
@@ -895,16 +877,15 @@ Gets the value set by <a class="link" href="GtkEntry.html#gtk-entry-set-has-fram
|
|
895
877
|
</tr>
|
896
878
|
<tr>
|
897
879
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
898
|
-
<td>
|
899
|
-
</td>
|
880
|
+
<td>whether the entry has a beveled frame</td>
|
900
881
|
</tr>
|
901
882
|
</tbody>
|
902
883
|
</table></div>
|
903
884
|
</div>
|
904
885
|
<hr>
|
905
|
-
<div class="refsect2"
|
886
|
+
<div class="refsect2">
|
906
887
|
<a name="gtk-entry-get-inner-border"></a><h3>gtk_entry_get_inner_border ()</h3>
|
907
|
-
<pre class="programlisting">const <a class="link" href="GtkStyle.html#GtkBorder"
|
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>
|
908
889
|
<p>
|
909
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
|
910
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.
|
@@ -919,7 +900,7 @@ This function returns the entry's <a class="link" href="GtkEntry.html#GtkEntry--
|
|
919
900
|
</tr>
|
920
901
|
<tr>
|
921
902
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
922
|
-
<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>
|
923
904
|
</td>
|
924
905
|
</tr>
|
925
906
|
</tbody>
|
@@ -927,7 +908,7 @@ This function returns the entry's <a class="link" href="GtkEntry.html#GtkEntry--
|
|
927
908
|
<p class="since">Since 2.10</p>
|
928
909
|
</div>
|
929
910
|
<hr>
|
930
|
-
<div class="refsect2"
|
911
|
+
<div class="refsect2">
|
931
912
|
<a name="gtk-entry-get-width-chars"></a><h3>gtk_entry_get_width_chars ()</h3>
|
932
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>
|
933
914
|
<p>
|
@@ -943,14 +924,13 @@ Gets the value set by <a class="link" href="GtkEntry.html#gtk-entry-set-width-ch
|
|
943
924
|
</tr>
|
944
925
|
<tr>
|
945
926
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
946
|
-
<td>
|
947
|
-
</td>
|
927
|
+
<td>number of chars to request space for, or negative if unset</td>
|
948
928
|
</tr>
|
949
929
|
</tbody>
|
950
930
|
</table></div>
|
951
931
|
</div>
|
952
932
|
<hr>
|
953
|
-
<div class="refsect2"
|
933
|
+
<div class="refsect2">
|
954
934
|
<a name="gtk-entry-set-activates-default"></a><h3>gtk_entry_set_activates_default ()</h3>
|
955
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>,
|
956
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>
|
@@ -976,14 +956,13 @@ the default handler for the <span class="type">"activate"</span> signal.)
|
|
976
956
|
<tr>
|
977
957
|
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
978
958
|
<td>
|
979
|
-
<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
|
980
|
-
</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>
|
981
960
|
</tr>
|
982
961
|
</tbody>
|
983
962
|
</table></div>
|
984
963
|
</div>
|
985
964
|
<hr>
|
986
|
-
<div class="refsect2"
|
965
|
+
<div class="refsect2">
|
987
966
|
<a name="gtk-entry-set-has-frame"></a><h3>gtk_entry_set_has_frame ()</h3>
|
988
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>,
|
989
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>
|
@@ -1000,17 +979,16 @@ Sets whether the entry has a beveled frame around it.
|
|
1000
979
|
</tr>
|
1001
980
|
<tr>
|
1002
981
|
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
1003
|
-
<td>new value
|
1004
|
-
</td>
|
982
|
+
<td>new value</td>
|
1005
983
|
</tr>
|
1006
984
|
</tbody>
|
1007
985
|
</table></div>
|
1008
986
|
</div>
|
1009
987
|
<hr>
|
1010
|
-
<div class="refsect2"
|
988
|
+
<div class="refsect2">
|
1011
989
|
<a name="gtk-entry-set-inner-border"></a><h3>gtk_entry_set_inner_border ()</h3>
|
1012
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>,
|
1013
|
-
<em class="parameter"><code>const <a class="link" href="GtkStyle.html#GtkBorder"
|
991
|
+
<em class="parameter"><code>const <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a> *border</code></em>);</pre>
|
1014
992
|
<p>
|
1015
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>
|
1016
994
|
is passed. The inner-border is the area around the entry's text, but
|
@@ -1032,7 +1010,7 @@ pixel-exact positioning of the entry is important.
|
|
1032
1010
|
</tr>
|
1033
1011
|
<tr>
|
1034
1012
|
<td><p><span class="term"><em class="parameter"><code>border</code></em> :</span></p></td>
|
1035
|
-
<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>
|
1036
1014
|
</td>
|
1037
1015
|
</tr>
|
1038
1016
|
</tbody>
|
@@ -1040,7 +1018,7 @@ pixel-exact positioning of the entry is important.
|
|
1040
1018
|
<p class="since">Since 2.10</p>
|
1041
1019
|
</div>
|
1042
1020
|
<hr>
|
1043
|
-
<div class="refsect2"
|
1021
|
+
<div class="refsect2">
|
1044
1022
|
<a name="gtk-entry-set-width-chars"></a><h3>gtk_entry_set_width_chars ()</h3>
|
1045
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>,
|
1046
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>
|
@@ -1061,14 +1039,13 @@ size reverts to the default entry size.
|
|
1061
1039
|
</tr>
|
1062
1040
|
<tr>
|
1063
1041
|
<td><p><span class="term"><em class="parameter"><code>n_chars</code></em> :</span></p></td>
|
1064
|
-
<td>width in chars
|
1065
|
-
</td>
|
1042
|
+
<td>width in chars</td>
|
1066
1043
|
</tr>
|
1067
1044
|
</tbody>
|
1068
1045
|
</table></div>
|
1069
1046
|
</div>
|
1070
1047
|
<hr>
|
1071
|
-
<div class="refsect2"
|
1048
|
+
<div class="refsect2">
|
1072
1049
|
<a name="gtk-entry-get-invisible-char"></a><h3>gtk_entry_get_invisible_char ()</h3>
|
1073
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>
|
1074
1051
|
<p>
|
@@ -1085,15 +1062,14 @@ for entries with visibility set to false. See <a class="link" href="GtkEntry.htm
|
|
1085
1062
|
</tr>
|
1086
1063
|
<tr>
|
1087
1064
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1088
|
-
<td>
|
1089
|
-
|
1090
|
-
</td>
|
1065
|
+
<td>the current invisible char, or 0, if the entry does not
|
1066
|
+
show invisible text at all.</td>
|
1091
1067
|
</tr>
|
1092
1068
|
</tbody>
|
1093
1069
|
</table></div>
|
1094
1070
|
</div>
|
1095
1071
|
<hr>
|
1096
|
-
<div class="refsect2"
|
1072
|
+
<div class="refsect2">
|
1097
1073
|
<a name="gtk-entry-set-alignment"></a><h3>gtk_entry_set_alignment ()</h3>
|
1098
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>,
|
1099
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>
|
@@ -1113,15 +1089,14 @@ text is shorter than the width of the entry.
|
|
1113
1089
|
<tr>
|
1114
1090
|
<td><p><span class="term"><em class="parameter"><code>xalign</code></em> :</span></p></td>
|
1115
1091
|
<td>The horizontal alignment, from 0 (left) to 1 (right).
|
1116
|
-
|
1117
|
-
</td>
|
1092
|
+
Reversed for RTL layouts</td>
|
1118
1093
|
</tr>
|
1119
1094
|
</tbody>
|
1120
1095
|
</table></div>
|
1121
1096
|
<p class="since">Since 2.4</p>
|
1122
1097
|
</div>
|
1123
1098
|
<hr>
|
1124
|
-
<div class="refsect2"
|
1099
|
+
<div class="refsect2">
|
1125
1100
|
<a name="gtk-entry-get-alignment"></a><h3>gtk_entry_get_alignment ()</h3>
|
1126
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>
|
1127
1102
|
<p>
|
@@ -1137,16 +1112,14 @@ Gets the value set by <a class="link" href="GtkEntry.html#gtk-entry-set-alignmen
|
|
1137
1112
|
</tr>
|
1138
1113
|
<tr>
|
1139
1114
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1140
|
-
<td>
|
1141
|
-
|
1142
|
-
</td>
|
1115
|
+
<td>the alignment</td>
|
1143
1116
|
</tr>
|
1144
1117
|
</tbody>
|
1145
1118
|
</table></div>
|
1146
1119
|
<p class="since">Since 2.4</p>
|
1147
1120
|
</div>
|
1148
1121
|
<hr>
|
1149
|
-
<div class="refsect2"
|
1122
|
+
<div class="refsect2">
|
1150
1123
|
<a name="gtk-entry-set-overwrite-mode"></a><h3>gtk_entry_set_overwrite_mode ()</h3>
|
1151
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>,
|
1152
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>
|
@@ -1163,15 +1136,14 @@ Sets whether the text is overwritten when typing in the <a class="link" href="Gt
|
|
1163
1136
|
</tr>
|
1164
1137
|
<tr>
|
1165
1138
|
<td><p><span class="term"><em class="parameter"><code>overwrite</code></em> :</span></p></td>
|
1166
|
-
<td>new value
|
1167
|
-
</td>
|
1139
|
+
<td>new value</td>
|
1168
1140
|
</tr>
|
1169
1141
|
</tbody>
|
1170
1142
|
</table></div>
|
1171
1143
|
<p class="since">Since 2.14</p>
|
1172
1144
|
</div>
|
1173
1145
|
<hr>
|
1174
|
-
<div class="refsect2"
|
1146
|
+
<div class="refsect2">
|
1175
1147
|
<a name="gtk-entry-get-overwrite-mode"></a><h3>gtk_entry_get_overwrite_mode ()</h3>
|
1176
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>
|
1177
1149
|
<p>
|
@@ -1187,18 +1159,16 @@ Gets the value set by <a class="link" href="GtkEntry.html#gtk-entry-set-overwrit
|
|
1187
1159
|
</tr>
|
1188
1160
|
<tr>
|
1189
1161
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1190
|
-
<td>
|
1191
|
-
|
1192
|
-
</td>
|
1162
|
+
<td>whether the text is overwritten when typing.</td>
|
1193
1163
|
</tr>
|
1194
1164
|
</tbody>
|
1195
1165
|
</table></div>
|
1196
1166
|
<p class="since">Since 2.14</p>
|
1197
1167
|
</div>
|
1198
1168
|
<hr>
|
1199
|
-
<div class="refsect2"
|
1169
|
+
<div class="refsect2">
|
1200
1170
|
<a name="gtk-entry-get-layout"></a><h3>gtk_entry_get_layout ()</h3>
|
1201
|
-
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="returnvalue">PangoLayout</span></a
|
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>
|
1202
1172
|
<p>
|
1203
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.
|
1204
1174
|
The layout is useful to e.g. convert text positions to
|
@@ -1222,14 +1192,14 @@ indices in the layout to byte indices in the entry contents.
|
|
1222
1192
|
</tr>
|
1223
1193
|
<tr>
|
1224
1194
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1225
|
-
<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>
|
1226
1196
|
</td>
|
1227
1197
|
</tr>
|
1228
1198
|
</tbody>
|
1229
1199
|
</table></div>
|
1230
1200
|
</div>
|
1231
1201
|
<hr>
|
1232
|
-
<div class="refsect2"
|
1202
|
+
<div class="refsect2">
|
1233
1203
|
<a name="gtk-entry-get-layout-offsets"></a><h3>gtk_entry_get_layout_offsets ()</h3>
|
1234
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>,
|
1235
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>,
|
@@ -1268,19 +1238,19 @@ indices in the layout to byte indices in the entry contents.
|
|
1268
1238
|
</tr>
|
1269
1239
|
<tr>
|
1270
1240
|
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
1271
|
-
<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>
|
1272
1242
|
</td>
|
1273
1243
|
</tr>
|
1274
1244
|
<tr>
|
1275
1245
|
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
1276
|
-
<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>
|
1277
1247
|
</td>
|
1278
1248
|
</tr>
|
1279
1249
|
</tbody>
|
1280
1250
|
</table></div>
|
1281
1251
|
</div>
|
1282
1252
|
<hr>
|
1283
|
-
<div class="refsect2"
|
1253
|
+
<div class="refsect2">
|
1284
1254
|
<a name="gtk-entry-layout-index-to-text-index"></a><h3>gtk_entry_layout_index_to_text_index ()</h3>
|
1285
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
|
1286
1256
|
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
@@ -1301,19 +1271,17 @@ with text retrieved via <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Obje
|
|
1301
1271
|
</tr>
|
1302
1272
|
<tr>
|
1303
1273
|
<td><p><span class="term"><em class="parameter"><code>layout_index</code></em> :</span></p></td>
|
1304
|
-
<td>byte index into the entry layout text
|
1305
|
-
</td>
|
1274
|
+
<td>byte index into the entry layout text</td>
|
1306
1275
|
</tr>
|
1307
1276
|
<tr>
|
1308
1277
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1309
|
-
<td>
|
1310
|
-
</td>
|
1278
|
+
<td>byte index into the entry contents</td>
|
1311
1279
|
</tr>
|
1312
1280
|
</tbody>
|
1313
1281
|
</table></div>
|
1314
1282
|
</div>
|
1315
1283
|
<hr>
|
1316
|
-
<div class="refsect2"
|
1284
|
+
<div class="refsect2">
|
1317
1285
|
<a name="gtk-entry-text-index-to-layout-index"></a><h3>gtk_entry_text_index_to_layout_index ()</h3>
|
1318
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
|
1319
1287
|
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
@@ -1333,19 +1301,17 @@ Converts from a position in the entry's <a href="/usr/share/gtk-doc/html/pango/p
|
|
1333
1301
|
</tr>
|
1334
1302
|
<tr>
|
1335
1303
|
<td><p><span class="term"><em class="parameter"><code>text_index</code></em> :</span></p></td>
|
1336
|
-
<td>byte index into the entry contents
|
1337
|
-
</td>
|
1304
|
+
<td>byte index into the entry contents</td>
|
1338
1305
|
</tr>
|
1339
1306
|
<tr>
|
1340
1307
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1341
|
-
<td>
|
1342
|
-
</td>
|
1308
|
+
<td>byte index into the entry layout text</td>
|
1343
1309
|
</tr>
|
1344
1310
|
</tbody>
|
1345
1311
|
</table></div>
|
1346
1312
|
</div>
|
1347
1313
|
<hr>
|
1348
|
-
<div class="refsect2"
|
1314
|
+
<div class="refsect2">
|
1349
1315
|
<a name="gtk-entry-get-max-length"></a><h3>gtk_entry_get_max_length ()</h3>
|
1350
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>
|
1351
1317
|
<p>
|
@@ -1380,15 +1346,14 @@ This is equivalent to:
|
|
1380
1346
|
</tr>
|
1381
1347
|
<tr>
|
1382
1348
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1383
|
-
<td>
|
1384
|
-
|
1385
|
-
</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>
|
1386
1351
|
</tr>
|
1387
1352
|
</tbody>
|
1388
1353
|
</table></div>
|
1389
1354
|
</div>
|
1390
1355
|
<hr>
|
1391
|
-
<div class="refsect2"
|
1356
|
+
<div class="refsect2">
|
1392
1357
|
<a name="gtk-entry-get-visibility"></a><h3>gtk_entry_get_visibility ()</h3>
|
1393
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>
|
1394
1359
|
<p>
|
@@ -1405,14 +1370,14 @@ Retrieves whether the text in <em class="parameter"><code>entry</code></em> is v
|
|
1405
1370
|
</tr>
|
1406
1371
|
<tr>
|
1407
1372
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1408
|
-
<td>
|
1409
|
-
</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>
|
1410
1375
|
</tr>
|
1411
1376
|
</tbody>
|
1412
1377
|
</table></div>
|
1413
1378
|
</div>
|
1414
1379
|
<hr>
|
1415
|
-
<div class="refsect2"
|
1380
|
+
<div class="refsect2">
|
1416
1381
|
<a name="gtk-entry-set-completion"></a><h3>gtk_entry_set_completion ()</h3>
|
1417
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>,
|
1418
1383
|
<em class="parameter"><code><a class="link" href="GtkEntryCompletion.html" title="GtkEntryCompletion"><span class="type">GtkEntryCompletion</span></a> *completion</code></em>);</pre>
|
@@ -1432,7 +1397,7 @@ All further configuration of the completion mechanism is done on
|
|
1432
1397
|
</tr>
|
1433
1398
|
<tr>
|
1434
1399
|
<td><p><span class="term"><em class="parameter"><code>completion</code></em> :</span></p></td>
|
1435
|
-
<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>
|
1436
1401
|
</td>
|
1437
1402
|
</tr>
|
1438
1403
|
</tbody>
|
@@ -1440,7 +1405,7 @@ All further configuration of the completion mechanism is done on
|
|
1440
1405
|
<p class="since">Since 2.4</p>
|
1441
1406
|
</div>
|
1442
1407
|
<hr>
|
1443
|
-
<div class="refsect2"
|
1408
|
+
<div class="refsect2">
|
1444
1409
|
<a name="gtk-entry-get-completion"></a><h3>gtk_entry_get_completion ()</h3>
|
1445
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>
|
1446
1411
|
<p>
|
@@ -1456,8 +1421,8 @@ Returns the auxiliary completion object currently in use by <em class="parameter
|
|
1456
1421
|
</tr>
|
1457
1422
|
<tr>
|
1458
1423
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1459
|
-
<td>
|
1460
|
-
|
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>
|
1461
1426
|
</td>
|
1462
1427
|
</tr>
|
1463
1428
|
</tbody>
|
@@ -1465,7 +1430,7 @@ Returns the auxiliary completion object currently in use by <em class="parameter
|
|
1465
1430
|
<p class="since">Since 2.4</p>
|
1466
1431
|
</div>
|
1467
1432
|
<hr>
|
1468
|
-
<div class="refsect2"
|
1433
|
+
<div class="refsect2">
|
1469
1434
|
<a name="gtk-entry-set-cursor-hadjustment"></a><h3>gtk_entry_set_cursor_hadjustment ()</h3>
|
1470
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>,
|
1471
1436
|
<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
@@ -1489,8 +1454,8 @@ as the entry.
|
|
1489
1454
|
</tr>
|
1490
1455
|
<tr>
|
1491
1456
|
<td><p><span class="term"><em class="parameter"><code>adjustment</code></em> :</span></p></td>
|
1492
|
-
<td>an adjustment which should be adjusted when the cursor
|
1493
|
-
|
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>
|
1494
1459
|
</td>
|
1495
1460
|
</tr>
|
1496
1461
|
</tbody>
|
@@ -1498,9 +1463,9 @@ as the entry.
|
|
1498
1463
|
<p class="since">Since 2.12</p>
|
1499
1464
|
</div>
|
1500
1465
|
<hr>
|
1501
|
-
<div class="refsect2"
|
1466
|
+
<div class="refsect2">
|
1502
1467
|
<a name="gtk-entry-get-cursor-hadjustment"></a><h3>gtk_entry_get_cursor_hadjustment ()</h3>
|
1503
|
-
<pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a
|
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>
|
1504
1469
|
<p>
|
1505
1470
|
Retrieves the horizontal cursor adjustment for the entry.
|
1506
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>.
|
@@ -1515,8 +1480,8 @@ See <a class="link" href="GtkEntry.html#gtk-entry-set-cursor-hadjustment" title=
|
|
1515
1480
|
</tr>
|
1516
1481
|
<tr>
|
1517
1482
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1518
|
-
<td>
|
1519
|
-
|
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>
|
1520
1485
|
</td>
|
1521
1486
|
</tr>
|
1522
1487
|
</tbody>
|
@@ -1524,7 +1489,7 @@ See <a class="link" href="GtkEntry.html#gtk-entry-set-cursor-hadjustment" title=
|
|
1524
1489
|
<p class="since">Since 2.12</p>
|
1525
1490
|
</div>
|
1526
1491
|
<hr>
|
1527
|
-
<div class="refsect2"
|
1492
|
+
<div class="refsect2">
|
1528
1493
|
<a name="gtk-entry-set-progress-fraction"></a><h3>gtk_entry_set_progress_fraction ()</h3>
|
1529
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>,
|
1530
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>
|
@@ -1543,15 +1508,14 @@ inclusive.
|
|
1543
1508
|
</tr>
|
1544
1509
|
<tr>
|
1545
1510
|
<td><p><span class="term"><em class="parameter"><code>fraction</code></em> :</span></p></td>
|
1546
|
-
<td>fraction of the task that's been completed
|
1547
|
-
</td>
|
1511
|
+
<td>fraction of the task that's been completed</td>
|
1548
1512
|
</tr>
|
1549
1513
|
</tbody>
|
1550
1514
|
</table></div>
|
1551
1515
|
<p class="since">Since 2.16</p>
|
1552
1516
|
</div>
|
1553
1517
|
<hr>
|
1554
|
-
<div class="refsect2"
|
1518
|
+
<div class="refsect2">
|
1555
1519
|
<a name="gtk-entry-get-progress-fraction"></a><h3>gtk_entry_get_progress_fraction ()</h3>
|
1556
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>
|
1557
1521
|
<p>
|
@@ -1568,16 +1532,14 @@ See <a class="link" href="GtkEntry.html#gtk-entry-set-progress-fraction" title="
|
|
1568
1532
|
</tr>
|
1569
1533
|
<tr>
|
1570
1534
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1571
|
-
<td>
|
1572
|
-
|
1573
|
-
</td>
|
1535
|
+
<td>a fraction from 0.0 to 1.0</td>
|
1574
1536
|
</tr>
|
1575
1537
|
</tbody>
|
1576
1538
|
</table></div>
|
1577
1539
|
<p class="since">Since 2.16</p>
|
1578
1540
|
</div>
|
1579
1541
|
<hr>
|
1580
|
-
<div class="refsect2"
|
1542
|
+
<div class="refsect2">
|
1581
1543
|
<a name="gtk-entry-set-progress-pulse-step"></a><h3>gtk_entry_set_progress_pulse_step ()</h3>
|
1582
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>,
|
1583
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>
|
@@ -1595,15 +1557,14 @@ bouncing block for each call to <a class="link" href="GtkEntry.html#gtk-entry-pr
|
|
1595
1557
|
</tr>
|
1596
1558
|
<tr>
|
1597
1559
|
<td><p><span class="term"><em class="parameter"><code>fraction</code></em> :</span></p></td>
|
1598
|
-
<td>fraction between 0.0 and 1.0
|
1599
|
-
</td>
|
1560
|
+
<td>fraction between 0.0 and 1.0</td>
|
1600
1561
|
</tr>
|
1601
1562
|
</tbody>
|
1602
1563
|
</table></div>
|
1603
1564
|
<p class="since">Since 2.16</p>
|
1604
1565
|
</div>
|
1605
1566
|
<hr>
|
1606
|
-
<div class="refsect2"
|
1567
|
+
<div class="refsect2">
|
1607
1568
|
<a name="gtk-entry-get-progress-pulse-step"></a><h3>gtk_entry_get_progress_pulse_step ()</h3>
|
1608
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>
|
1609
1570
|
<p>
|
@@ -1619,16 +1580,14 @@ Retrieves the pulse step set with <a class="link" href="GtkEntry.html#gtk-entry-
|
|
1619
1580
|
</tr>
|
1620
1581
|
<tr>
|
1621
1582
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1622
|
-
<td>
|
1623
|
-
|
1624
|
-
</td>
|
1583
|
+
<td>a fraction from 0.0 to 1.0</td>
|
1625
1584
|
</tr>
|
1626
1585
|
</tbody>
|
1627
1586
|
</table></div>
|
1628
1587
|
<p class="since">Since 2.16</p>
|
1629
1588
|
</div>
|
1630
1589
|
<hr>
|
1631
|
-
<div class="refsect2"
|
1590
|
+
<div class="refsect2">
|
1632
1591
|
<a name="gtk-entry-progress-pulse"></a><h3>gtk_entry_progress_pulse ()</h3>
|
1633
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>
|
1634
1593
|
<p>
|
@@ -1650,11 +1609,11 @@ where a block bounces back and forth. Each call to
|
|
1650
1609
|
<p class="since">Since 2.16</p>
|
1651
1610
|
</div>
|
1652
1611
|
<hr>
|
1653
|
-
<div class="refsect2"
|
1612
|
+
<div class="refsect2">
|
1654
1613
|
<a name="gtk-entry-im-context-filter-keypress"></a><h3>gtk_entry_im_context_filter_keypress ()</h3>
|
1655
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
|
1656
1615
|
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>,
|
1657
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
1616
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEventKey"><span class="type">GdkEventKey</span></a> *event</code></em>);</pre>
|
1658
1617
|
<p>
|
1659
1618
|
Allow the <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> input method to internally handle key press
|
1660
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
|
@@ -1678,21 +1637,19 @@ See <a class="link" href="GtkTextView.html#gtk-text-view-reset-im-context" title
|
|
1678
1637
|
</tr>
|
1679
1638
|
<tr>
|
1680
1639
|
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
1681
|
-
<td>the key event
|
1682
|
-
</td>
|
1640
|
+
<td>the key event</td>
|
1683
1641
|
</tr>
|
1684
1642
|
<tr>
|
1685
1643
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1686
|
-
<td>
|
1687
|
-
|
1688
|
-
</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>
|
1689
1646
|
</tr>
|
1690
1647
|
</tbody>
|
1691
1648
|
</table></div>
|
1692
1649
|
<p class="since">Since 2.22</p>
|
1693
1650
|
</div>
|
1694
1651
|
<hr>
|
1695
|
-
<div class="refsect2"
|
1652
|
+
<div class="refsect2">
|
1696
1653
|
<a name="gtk-entry-reset-im-context"></a><h3>gtk_entry_reset_im_context ()</h3>
|
1697
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>
|
1698
1655
|
<p>
|
@@ -1713,7 +1670,7 @@ would confuse on-going input method behavior.
|
|
1713
1670
|
<p class="since">Since 2.22</p>
|
1714
1671
|
</div>
|
1715
1672
|
<hr>
|
1716
|
-
<div class="refsect2"
|
1673
|
+
<div class="refsect2">
|
1717
1674
|
<a name="GtkEntryIconPosition"></a><h3>enum GtkEntryIconPosition</h3>
|
1718
1675
|
<pre class="programlisting">typedef enum
|
1719
1676
|
{
|
@@ -1742,11 +1699,11 @@ Specifies the side of the entry at which an icon is placed.
|
|
1742
1699
|
<p class="since">Since 2.16</p>
|
1743
1700
|
</div>
|
1744
1701
|
<hr>
|
1745
|
-
<div class="refsect2"
|
1702
|
+
<div class="refsect2">
|
1746
1703
|
<a name="gtk-entry-set-icon-from-pixbuf"></a><h3>gtk_entry_set_icon_from_pixbuf ()</h3>
|
1747
1704
|
<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>,
|
1748
1705
|
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
1749
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1706
|
+
<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>
|
1750
1707
|
<p>
|
1751
1708
|
Sets the icon shown in the specified position using a pixbuf.
|
1752
1709
|
</p>
|
@@ -1763,12 +1720,11 @@ If <em class="parameter"><code>pixbuf</code></em> is <a href="http://library.gno
|
|
1763
1720
|
</tr>
|
1764
1721
|
<tr>
|
1765
1722
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1766
|
-
<td>Icon position
|
1767
|
-
</td>
|
1723
|
+
<td>Icon position</td>
|
1768
1724
|
</tr>
|
1769
1725
|
<tr>
|
1770
1726
|
<td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
|
1771
|
-
<td>
|
1727
|
+
<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>
|
1772
1728
|
</td>
|
1773
1729
|
</tr>
|
1774
1730
|
</tbody>
|
@@ -1776,7 +1732,7 @@ If <em class="parameter"><code>pixbuf</code></em> is <a href="http://library.gno
|
|
1776
1732
|
<p class="since">Since 2.16</p>
|
1777
1733
|
</div>
|
1778
1734
|
<hr>
|
1779
|
-
<div class="refsect2"
|
1735
|
+
<div class="refsect2">
|
1780
1736
|
<a name="gtk-entry-set-icon-from-stock"></a><h3>gtk_entry_set_icon_from_stock ()</h3>
|
1781
1737
|
<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>,
|
1782
1738
|
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
@@ -1798,12 +1754,11 @@ If <em class="parameter"><code>stock_id</code></em> is <a href="http://library.g
|
|
1798
1754
|
</tr>
|
1799
1755
|
<tr>
|
1800
1756
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1801
|
-
<td>Icon position
|
1802
|
-
</td>
|
1757
|
+
<td>Icon position</td>
|
1803
1758
|
</tr>
|
1804
1759
|
<tr>
|
1805
1760
|
<td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
|
1806
|
-
<td>
|
1761
|
+
<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>
|
1807
1762
|
</td>
|
1808
1763
|
</tr>
|
1809
1764
|
</tbody>
|
@@ -1811,7 +1766,7 @@ If <em class="parameter"><code>stock_id</code></em> is <a href="http://library.g
|
|
1811
1766
|
<p class="since">Since 2.16</p>
|
1812
1767
|
</div>
|
1813
1768
|
<hr>
|
1814
|
-
<div class="refsect2"
|
1769
|
+
<div class="refsect2">
|
1815
1770
|
<a name="gtk-entry-set-icon-from-icon-name"></a><h3>gtk_entry_set_icon_from_icon_name ()</h3>
|
1816
1771
|
<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>,
|
1817
1772
|
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
@@ -1837,12 +1792,11 @@ If <em class="parameter"><code>icon_name</code></em> is <a href="http://library.
|
|
1837
1792
|
</tr>
|
1838
1793
|
<tr>
|
1839
1794
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1840
|
-
<td>The position at which to set the icon
|
1841
|
-
</td>
|
1795
|
+
<td>The position at which to set the icon</td>
|
1842
1796
|
</tr>
|
1843
1797
|
<tr>
|
1844
1798
|
<td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
|
1845
|
-
<td>
|
1799
|
+
<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>
|
1846
1800
|
</td>
|
1847
1801
|
</tr>
|
1848
1802
|
</tbody>
|
@@ -1850,7 +1804,7 @@ If <em class="parameter"><code>icon_name</code></em> is <a href="http://library.
|
|
1850
1804
|
<p class="since">Since 2.16</p>
|
1851
1805
|
</div>
|
1852
1806
|
<hr>
|
1853
|
-
<div class="refsect2"
|
1807
|
+
<div class="refsect2">
|
1854
1808
|
<a name="gtk-entry-set-icon-from-gicon"></a><h3>gtk_entry_set_icon_from_gicon ()</h3>
|
1855
1809
|
<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>,
|
1856
1810
|
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
@@ -1874,12 +1828,11 @@ If <em class="parameter"><code>icon</code></em> is <a href="http://library.gnome
|
|
1874
1828
|
</tr>
|
1875
1829
|
<tr>
|
1876
1830
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1877
|
-
<td>The position at which to set the icon
|
1878
|
-
</td>
|
1831
|
+
<td>The position at which to set the icon</td>
|
1879
1832
|
</tr>
|
1880
1833
|
<tr>
|
1881
1834
|
<td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
|
1882
|
-
<td>
|
1835
|
+
<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>
|
1883
1836
|
</td>
|
1884
1837
|
</tr>
|
1885
1838
|
</tbody>
|
@@ -1887,7 +1840,7 @@ If <em class="parameter"><code>icon</code></em> is <a href="http://library.gnome
|
|
1887
1840
|
<p class="since">Since 2.16</p>
|
1888
1841
|
</div>
|
1889
1842
|
<hr>
|
1890
|
-
<div class="refsect2"
|
1843
|
+
<div class="refsect2">
|
1891
1844
|
<a name="gtk-entry-get-icon-storage-type"></a><h3>gtk_entry_get_icon_storage_type ()</h3>
|
1892
1845
|
<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>,
|
1893
1846
|
<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>
|
@@ -1906,23 +1859,20 @@ the return value will be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAP
|
|
1906
1859
|
</tr>
|
1907
1860
|
<tr>
|
1908
1861
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1909
|
-
<td>Icon position
|
1910
|
-
</td>
|
1862
|
+
<td>Icon position</td>
|
1911
1863
|
</tr>
|
1912
1864
|
<tr>
|
1913
1865
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1914
|
-
<td>
|
1915
|
-
|
1916
|
-
</td>
|
1866
|
+
<td>image representation being used</td>
|
1917
1867
|
</tr>
|
1918
1868
|
</tbody>
|
1919
1869
|
</table></div>
|
1920
1870
|
<p class="since">Since 2.16</p>
|
1921
1871
|
</div>
|
1922
1872
|
<hr>
|
1923
|
-
<div class="refsect2"
|
1873
|
+
<div class="refsect2">
|
1924
1874
|
<a name="gtk-entry-get-icon-pixbuf"></a><h3>gtk_entry_get_icon_pixbuf ()</h3>
|
1925
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1875
|
+
<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>,
|
1926
1876
|
<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>
|
1927
1877
|
<p>
|
1928
1878
|
Retrieves the image used for the icon.
|
@@ -1930,7 +1880,7 @@ Retrieves the image used for the icon.
|
|
1930
1880
|
<p>
|
1931
1881
|
Unlike the other methods of setting and getting icon data, this
|
1932
1882
|
method will work regardless of whether the icon was set using a
|
1933
|
-
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1883
|
+
<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.
|
1934
1884
|
</p>
|
1935
1885
|
<div class="variablelist"><table border="0">
|
1936
1886
|
<col align="left" valign="top">
|
@@ -1942,13 +1892,12 @@ method will work regardless of whether the icon was set using a
|
|
1942
1892
|
</tr>
|
1943
1893
|
<tr>
|
1944
1894
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1945
|
-
<td>Icon position
|
1946
|
-
</td>
|
1895
|
+
<td>Icon position</td>
|
1947
1896
|
</tr>
|
1948
1897
|
<tr>
|
1949
1898
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1950
|
-
<td>
|
1951
|
-
|
1899
|
+
<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
|
1900
|
+
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>
|
1952
1901
|
</td>
|
1953
1902
|
</tr>
|
1954
1903
|
</tbody>
|
@@ -1956,9 +1905,9 @@ method will work regardless of whether the icon was set using a
|
|
1956
1905
|
<p class="since">Since 2.16</p>
|
1957
1906
|
</div>
|
1958
1907
|
<hr>
|
1959
|
-
<div class="refsect2"
|
1908
|
+
<div class="refsect2">
|
1960
1909
|
<a name="gtk-entry-get-icon-stock"></a><h3>gtk_entry_get_icon_stock ()</h3>
|
1961
|
-
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a
|
1910
|
+
<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>,
|
1962
1911
|
<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>
|
1963
1912
|
<p>
|
1964
1913
|
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
|
@@ -1975,24 +1924,21 @@ pixbuf, icon name or gicon).
|
|
1975
1924
|
</tr>
|
1976
1925
|
<tr>
|
1977
1926
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
1978
|
-
<td>Icon position
|
1979
|
-
</td>
|
1927
|
+
<td>Icon position</td>
|
1980
1928
|
</tr>
|
1981
1929
|
<tr>
|
1982
1930
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1983
|
-
<td>
|
1984
|
-
|
1985
|
-
|
1986
|
-
</td>
|
1931
|
+
<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
|
1932
|
+
wasn't set from a stock id</td>
|
1987
1933
|
</tr>
|
1988
1934
|
</tbody>
|
1989
1935
|
</table></div>
|
1990
1936
|
<p class="since">Since 2.16</p>
|
1991
1937
|
</div>
|
1992
1938
|
<hr>
|
1993
|
-
<div class="refsect2"
|
1939
|
+
<div class="refsect2">
|
1994
1940
|
<a name="gtk-entry-get-icon-name"></a><h3>gtk_entry_get_icon_name ()</h3>
|
1995
|
-
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a
|
1941
|
+
<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>,
|
1996
1942
|
<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>
|
1997
1943
|
<p>
|
1998
1944
|
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
|
@@ -2009,24 +1955,21 @@ pixbuf, stock or gicon).
|
|
2009
1955
|
</tr>
|
2010
1956
|
<tr>
|
2011
1957
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2012
|
-
<td>Icon position
|
2013
|
-
</td>
|
1958
|
+
<td>Icon position</td>
|
2014
1959
|
</tr>
|
2015
1960
|
<tr>
|
2016
1961
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2017
|
-
<td>
|
2018
|
-
|
2019
|
-
|
2020
|
-
</td>
|
1962
|
+
<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
|
1963
|
+
wasn't set from an icon name</td>
|
2021
1964
|
</tr>
|
2022
1965
|
</tbody>
|
2023
1966
|
</table></div>
|
2024
1967
|
<p class="since">Since 2.16</p>
|
2025
1968
|
</div>
|
2026
1969
|
<hr>
|
2027
|
-
<div class="refsect2"
|
1970
|
+
<div class="refsect2">
|
2028
1971
|
<a name="gtk-entry-get-icon-gicon"></a><h3>gtk_entry_get_icon_gicon ()</h3>
|
2029
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="returnvalue">GIcon</span></a
|
1972
|
+
<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>,
|
2030
1973
|
<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>
|
2031
1974
|
<p>
|
2032
1975
|
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
|
@@ -2043,14 +1986,12 @@ stock, pixbuf, or icon name).
|
|
2043
1986
|
</tr>
|
2044
1987
|
<tr>
|
2045
1988
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2046
|
-
<td>Icon position
|
2047
|
-
</td>
|
1989
|
+
<td>Icon position</td>
|
2048
1990
|
</tr>
|
2049
1991
|
<tr>
|
2050
1992
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2051
|
-
<td>
|
2052
|
-
|
2053
|
-
|
1993
|
+
<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
|
1994
|
+
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>
|
2054
1995
|
</td>
|
2055
1996
|
</tr>
|
2056
1997
|
</tbody>
|
@@ -2058,7 +1999,7 @@ stock, pixbuf, or icon name).
|
|
2058
1999
|
<p class="since">Since 2.16</p>
|
2059
2000
|
</div>
|
2060
2001
|
<hr>
|
2061
|
-
<div class="refsect2"
|
2002
|
+
<div class="refsect2">
|
2062
2003
|
<a name="gtk-entry-set-icon-activatable"></a><h3>gtk_entry_set_icon_activatable ()</h3>
|
2063
2004
|
<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>,
|
2064
2005
|
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
@@ -2076,21 +2017,19 @@ Sets whether the icon is activatable.
|
|
2076
2017
|
</tr>
|
2077
2018
|
<tr>
|
2078
2019
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2079
|
-
<td>Icon position
|
2080
|
-
</td>
|
2020
|
+
<td>Icon position</td>
|
2081
2021
|
</tr>
|
2082
2022
|
<tr>
|
2083
2023
|
<td><p><span class="term"><em class="parameter"><code>activatable</code></em> :</span></p></td>
|
2084
2024
|
<td>
|
2085
|
-
<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
|
2086
|
-
</td>
|
2025
|
+
<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>
|
2087
2026
|
</tr>
|
2088
2027
|
</tbody>
|
2089
2028
|
</table></div>
|
2090
2029
|
<p class="since">Since 2.16</p>
|
2091
2030
|
</div>
|
2092
2031
|
<hr>
|
2093
|
-
<div class="refsect2"
|
2032
|
+
<div class="refsect2">
|
2094
2033
|
<a name="gtk-entry-get-icon-activatable"></a><h3>gtk_entry_get_icon_activatable ()</h3>
|
2095
2034
|
<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>,
|
2096
2035
|
<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>
|
@@ -2107,21 +2046,19 @@ Returns whether the icon is activatable.
|
|
2107
2046
|
</tr>
|
2108
2047
|
<tr>
|
2109
2048
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2110
|
-
<td>Icon position
|
2111
|
-
</td>
|
2049
|
+
<td>Icon position</td>
|
2112
2050
|
</tr>
|
2113
2051
|
<tr>
|
2114
2052
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2115
|
-
<td>
|
2116
|
-
|
2117
|
-
</td>
|
2053
|
+
<td>
|
2054
|
+
<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>
|
2118
2055
|
</tr>
|
2119
2056
|
</tbody>
|
2120
2057
|
</table></div>
|
2121
2058
|
<p class="since">Since 2.16</p>
|
2122
2059
|
</div>
|
2123
2060
|
<hr>
|
2124
|
-
<div class="refsect2"
|
2061
|
+
<div class="refsect2">
|
2125
2062
|
<a name="gtk-entry-set-icon-sensitive"></a><h3>gtk_entry_set_icon_sensitive ()</h3>
|
2126
2063
|
<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>,
|
2127
2064
|
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
@@ -2139,21 +2076,19 @@ Sets the sensitivity for the specified icon.
|
|
2139
2076
|
</tr>
|
2140
2077
|
<tr>
|
2141
2078
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2142
|
-
<td>Icon position
|
2143
|
-
</td>
|
2079
|
+
<td>Icon position</td>
|
2144
2080
|
</tr>
|
2145
2081
|
<tr>
|
2146
2082
|
<td><p><span class="term"><em class="parameter"><code>sensitive</code></em> :</span></p></td>
|
2147
2083
|
<td>Specifies whether the icon should appear
|
2148
|
-
|
2149
|
-
</td>
|
2084
|
+
sensitive or insensitive</td>
|
2150
2085
|
</tr>
|
2151
2086
|
</tbody>
|
2152
2087
|
</table></div>
|
2153
2088
|
<p class="since">Since 2.16</p>
|
2154
2089
|
</div>
|
2155
2090
|
<hr>
|
2156
|
-
<div class="refsect2"
|
2091
|
+
<div class="refsect2">
|
2157
2092
|
<a name="gtk-entry-get-icon-sensitive"></a><h3>gtk_entry_get_icon_sensitive ()</h3>
|
2158
2093
|
<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>,
|
2159
2094
|
<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>
|
@@ -2170,21 +2105,19 @@ Returns whether the icon appears sensitive or insensitive.
|
|
2170
2105
|
</tr>
|
2171
2106
|
<tr>
|
2172
2107
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2173
|
-
<td>Icon position
|
2174
|
-
</td>
|
2108
|
+
<td>Icon position</td>
|
2175
2109
|
</tr>
|
2176
2110
|
<tr>
|
2177
2111
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2178
|
-
<td>
|
2179
|
-
|
2180
|
-
</td>
|
2112
|
+
<td>
|
2113
|
+
<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>
|
2181
2114
|
</tr>
|
2182
2115
|
</tbody>
|
2183
2116
|
</table></div>
|
2184
2117
|
<p class="since">Since 2.16</p>
|
2185
2118
|
</div>
|
2186
2119
|
<hr>
|
2187
|
-
<div class="refsect2"
|
2120
|
+
<div class="refsect2">
|
2188
2121
|
<a name="gtk-entry-get-icon-at-pos"></a><h3>gtk_entry_get_icon_at_pos ()</h3>
|
2189
2122
|
<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>,
|
2190
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> x</code></em>,
|
@@ -2205,26 +2138,22 @@ signal handler.
|
|
2205
2138
|
</tr>
|
2206
2139
|
<tr>
|
2207
2140
|
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
2208
|
-
<td>the x coordinate of the position to find
|
2209
|
-
</td>
|
2141
|
+
<td>the x coordinate of the position to find</td>
|
2210
2142
|
</tr>
|
2211
2143
|
<tr>
|
2212
2144
|
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
2213
|
-
<td>the y coordinate of the position to find
|
2214
|
-
</td>
|
2145
|
+
<td>the y coordinate of the position to find</td>
|
2215
2146
|
</tr>
|
2216
2147
|
<tr>
|
2217
2148
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2218
|
-
<td>
|
2219
|
-
|
2220
|
-
</td>
|
2149
|
+
<td>the index of the icon at the given position, or -1</td>
|
2221
2150
|
</tr>
|
2222
2151
|
</tbody>
|
2223
2152
|
</table></div>
|
2224
2153
|
<p class="since">Since 2.16</p>
|
2225
2154
|
</div>
|
2226
2155
|
<hr>
|
2227
|
-
<div class="refsect2"
|
2156
|
+
<div class="refsect2">
|
2228
2157
|
<a name="gtk-entry-set-icon-tooltip-text"></a><h3>gtk_entry_set_icon_tooltip_text ()</h3>
|
2229
2158
|
<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>,
|
2230
2159
|
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
@@ -2250,12 +2179,11 @@ See also <a class="link" href="GtkWidget.html#gtk-widget-set-tooltip-text" title
|
|
2250
2179
|
</tr>
|
2251
2180
|
<tr>
|
2252
2181
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2253
|
-
<td>the icon position
|
2254
|
-
</td>
|
2182
|
+
<td>the icon position</td>
|
2255
2183
|
</tr>
|
2256
2184
|
<tr>
|
2257
2185
|
<td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
|
2258
|
-
<td>
|
2186
|
+
<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>
|
2259
2187
|
</td>
|
2260
2188
|
</tr>
|
2261
2189
|
</tbody>
|
@@ -2263,7 +2191,7 @@ See also <a class="link" href="GtkWidget.html#gtk-widget-set-tooltip-text" title
|
|
2263
2191
|
<p class="since">Since 2.16</p>
|
2264
2192
|
</div>
|
2265
2193
|
<hr>
|
2266
|
-
<div class="refsect2"
|
2194
|
+
<div class="refsect2">
|
2267
2195
|
<a name="gtk-entry-get-icon-tooltip-text"></a><h3>gtk_entry_get_icon_tooltip_text ()</h3>
|
2268
2196
|
<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>,
|
2269
2197
|
<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>
|
@@ -2281,22 +2209,19 @@ position in <em class="parameter"><code>entry</code></em>.
|
|
2281
2209
|
</tr>
|
2282
2210
|
<tr>
|
2283
2211
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2284
|
-
<td>the icon position
|
2285
|
-
</td>
|
2212
|
+
<td>the icon position</td>
|
2286
2213
|
</tr>
|
2287
2214
|
<tr>
|
2288
2215
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2289
|
-
<td>
|
2290
|
-
|
2291
|
-
|
2292
|
-
</td>
|
2216
|
+
<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
|
2217
|
+
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>
|
2293
2218
|
</tr>
|
2294
2219
|
</tbody>
|
2295
2220
|
</table></div>
|
2296
2221
|
<p class="since">Since 2.16</p>
|
2297
2222
|
</div>
|
2298
2223
|
<hr>
|
2299
|
-
<div class="refsect2"
|
2224
|
+
<div class="refsect2">
|
2300
2225
|
<a name="gtk-entry-set-icon-tooltip-markup"></a><h3>gtk_entry_set_icon_tooltip_markup ()</h3>
|
2301
2226
|
<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>,
|
2302
2227
|
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
@@ -2323,12 +2248,11 @@ See also <a class="link" href="GtkWidget.html#gtk-widget-set-tooltip-markup" tit
|
|
2323
2248
|
</tr>
|
2324
2249
|
<tr>
|
2325
2250
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2326
|
-
<td>the icon position
|
2327
|
-
</td>
|
2251
|
+
<td>the icon position</td>
|
2328
2252
|
</tr>
|
2329
2253
|
<tr>
|
2330
2254
|
<td><p><span class="term"><em class="parameter"><code>tooltip</code></em> :</span></p></td>
|
2331
|
-
<td>
|
2255
|
+
<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>
|
2332
2256
|
</td>
|
2333
2257
|
</tr>
|
2334
2258
|
</tbody>
|
@@ -2336,7 +2260,7 @@ See also <a class="link" href="GtkWidget.html#gtk-widget-set-tooltip-markup" tit
|
|
2336
2260
|
<p class="since">Since 2.16</p>
|
2337
2261
|
</div>
|
2338
2262
|
<hr>
|
2339
|
-
<div class="refsect2"
|
2263
|
+
<div class="refsect2">
|
2340
2264
|
<a name="gtk-entry-get-icon-tooltip-markup"></a><h3>gtk_entry_get_icon_tooltip_markup ()</h3>
|
2341
2265
|
<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>,
|
2342
2266
|
<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>
|
@@ -2354,27 +2278,24 @@ position in <em class="parameter"><code>entry</code></em>.
|
|
2354
2278
|
</tr>
|
2355
2279
|
<tr>
|
2356
2280
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2357
|
-
<td>the icon position
|
2358
|
-
</td>
|
2281
|
+
<td>the icon position</td>
|
2359
2282
|
</tr>
|
2360
2283
|
<tr>
|
2361
2284
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2362
|
-
<td>
|
2363
|
-
|
2364
|
-
|
2365
|
-
</td>
|
2285
|
+
<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
|
2286
|
+
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>
|
2366
2287
|
</tr>
|
2367
2288
|
</tbody>
|
2368
2289
|
</table></div>
|
2369
2290
|
<p class="since">Since 2.16</p>
|
2370
2291
|
</div>
|
2371
2292
|
<hr>
|
2372
|
-
<div class="refsect2"
|
2293
|
+
<div class="refsect2">
|
2373
2294
|
<a name="gtk-entry-set-icon-drag-source"></a><h3>gtk_entry_set_icon_drag_source ()</h3>
|
2374
2295
|
<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>,
|
2375
2296
|
<em class="parameter"><code><a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos</code></em>,
|
2376
|
-
<em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList"
|
2377
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
2297
|
+
<em class="parameter"><code><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a> *target_list</code></em>,
|
2298
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Drag-and-Drop.html#GdkDragAction"><span class="type">GdkDragAction</span></a> actions</code></em>);</pre>
|
2378
2299
|
<p>
|
2379
2300
|
Sets up the icon at the given position so that GTK+ will start a drag
|
2380
2301
|
operation when the user clicks and drags the icon.
|
@@ -2402,25 +2323,22 @@ gets executed after the default handler.
|
|
2402
2323
|
</tr>
|
2403
2324
|
<tr>
|
2404
2325
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2405
|
-
<td>icon position
|
2406
|
-
</td>
|
2326
|
+
<td>icon position</td>
|
2407
2327
|
</tr>
|
2408
2328
|
<tr>
|
2409
2329
|
<td><p><span class="term"><em class="parameter"><code>target_list</code></em> :</span></p></td>
|
2410
|
-
<td>the targets (data formats) in which the data can be provided
|
2411
|
-
</td>
|
2330
|
+
<td>the targets (data formats) in which the data can be provided</td>
|
2412
2331
|
</tr>
|
2413
2332
|
<tr>
|
2414
2333
|
<td><p><span class="term"><em class="parameter"><code>actions</code></em> :</span></p></td>
|
2415
|
-
<td>a bitmask of the allowed drag actions
|
2416
|
-
</td>
|
2334
|
+
<td>a bitmask of the allowed drag actions</td>
|
2417
2335
|
</tr>
|
2418
2336
|
</tbody>
|
2419
2337
|
</table></div>
|
2420
2338
|
<p class="since">Since 2.16</p>
|
2421
2339
|
</div>
|
2422
2340
|
<hr>
|
2423
|
-
<div class="refsect2"
|
2341
|
+
<div class="refsect2">
|
2424
2342
|
<a name="gtk-entry-get-current-icon-drag-source"></a><h3>gtk_entry_get_current_icon_drag_source ()</h3>
|
2425
2343
|
<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
|
2426
2344
|
(<em class="parameter"><code><a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> *entry</code></em>);</pre>
|
@@ -2442,22 +2360,20 @@ callback.
|
|
2442
2360
|
</tr>
|
2443
2361
|
<tr>
|
2444
2362
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2445
|
-
<td>
|
2446
|
-
|
2447
|
-
|
2448
|
-
</td>
|
2363
|
+
<td>index of the icon which is the source of the current
|
2364
|
+
DND operation, or -1.</td>
|
2449
2365
|
</tr>
|
2450
2366
|
</tbody>
|
2451
2367
|
</table></div>
|
2452
2368
|
<p class="since">Since 2.16</p>
|
2453
2369
|
</div>
|
2454
2370
|
<hr>
|
2455
|
-
<div class="refsect2"
|
2371
|
+
<div class="refsect2">
|
2456
2372
|
<a name="gtk-entry-get-icon-window"></a><h3>gtk_entry_get_icon_window ()</h3>
|
2457
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/
|
2373
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/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>,
|
2458
2374
|
<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>
|
2459
2375
|
<p>
|
2460
|
-
Returns the <a href="http://library.gnome.org/devel/
|
2376
|
+
Returns the <a href="http://library.gnome.org/devel/gdk3/gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> which contains the entry's icon at
|
2461
2377
|
<em class="parameter"><code>icon_pos</code></em>. This function is useful when drawing something to the
|
2462
2378
|
entry in an expose-event callback because it enables the callback
|
2463
2379
|
to distinguish between the text window and entry's icon windows.
|
@@ -2465,6 +2381,10 @@ to distinguish between the text window and entry's icon windows.
|
|
2465
2381
|
<p>
|
2466
2382
|
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>.
|
2467
2383
|
</p>
|
2384
|
+
<p>
|
2385
|
+
Note that GTK+ 3 does not have this function anymore; it has
|
2386
|
+
been replaced by <code class="function">gtk_entry_get_icon_area()</code>.
|
2387
|
+
</p>
|
2468
2388
|
<div class="variablelist"><table border="0">
|
2469
2389
|
<col align="left" valign="top">
|
2470
2390
|
<tbody>
|
@@ -2475,13 +2395,11 @@ See also <a class="link" href="GtkEntry.html#gtk-entry-get-text-window" title="g
|
|
2475
2395
|
</tr>
|
2476
2396
|
<tr>
|
2477
2397
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
2478
|
-
<td>Icon position
|
2479
|
-
</td>
|
2398
|
+
<td>Icon position</td>
|
2480
2399
|
</tr>
|
2481
2400
|
<tr>
|
2482
2401
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2483
|
-
<td>
|
2484
|
-
|
2402
|
+
<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>
|
2485
2403
|
</td>
|
2486
2404
|
</tr>
|
2487
2405
|
</tbody>
|
@@ -2489,11 +2407,11 @@ See also <a class="link" href="GtkEntry.html#gtk-entry-get-text-window" title="g
|
|
2489
2407
|
<p class="since">Since 2.20</p>
|
2490
2408
|
</div>
|
2491
2409
|
<hr>
|
2492
|
-
<div class="refsect2"
|
2410
|
+
<div class="refsect2">
|
2493
2411
|
<a name="gtk-entry-get-text-window"></a><h3>gtk_entry_get_text_window ()</h3>
|
2494
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/
|
2412
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/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>
|
2495
2413
|
<p>
|
2496
|
-
Returns the <a href="http://library.gnome.org/devel/
|
2414
|
+
Returns the <a href="http://library.gnome.org/devel/gdk3/gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> which contains the text. This function is
|
2497
2415
|
useful when drawing something to the entry in an expose-event
|
2498
2416
|
callback because it enables the callback to distinguish between
|
2499
2417
|
the text window and entry's icon windows.
|
@@ -2501,6 +2419,10 @@ the text window and entry's icon windows.
|
|
2501
2419
|
<p>
|
2502
2420
|
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>.
|
2503
2421
|
</p>
|
2422
|
+
<p>
|
2423
|
+
Note that GTK+ 3 does not have this function anymore; it has
|
2424
|
+
been replaced by <code class="function">gtk_entry_get_text_area()</code>.
|
2425
|
+
</p>
|
2504
2426
|
<div class="variablelist"><table border="0">
|
2505
2427
|
<col align="left" valign="top">
|
2506
2428
|
<tbody>
|
@@ -2511,8 +2433,7 @@ See also <a class="link" href="GtkEntry.html#gtk-entry-get-icon-window" title="g
|
|
2511
2433
|
</tr>
|
2512
2434
|
<tr>
|
2513
2435
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2514
|
-
<td>
|
2515
|
-
|
2436
|
+
<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>
|
2516
2437
|
</td>
|
2517
2438
|
</tr>
|
2518
2439
|
</tbody>
|
@@ -2520,22 +2441,22 @@ See also <a class="link" href="GtkEntry.html#gtk-entry-get-icon-window" title="g
|
|
2520
2441
|
<p class="since">Since 2.20</p>
|
2521
2442
|
</div>
|
2522
2443
|
</div>
|
2523
|
-
<div class="refsect1"
|
2444
|
+
<div class="refsect1">
|
2524
2445
|
<a name="GtkEntry.property-details"></a><h2>Property Details</h2>
|
2525
|
-
<div class="refsect2"
|
2446
|
+
<div class="refsect2">
|
2526
2447
|
<a name="GtkEntry--activates-default"></a><h3>The <code class="literal">"activates-default"</code> property</h3>
|
2527
2448
|
<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>
|
2528
2449
|
<p>Whether to activate the default widget (such as the default button in a dialog) when Enter is pressed.</p>
|
2529
2450
|
<p>Default value: FALSE</p>
|
2530
2451
|
</div>
|
2531
2452
|
<hr>
|
2532
|
-
<div class="refsect2"
|
2453
|
+
<div class="refsect2">
|
2533
2454
|
<a name="GtkEntry--buffer"></a><h3>The <code class="literal">"buffer"</code> property</h3>
|
2534
2455
|
<pre class="programlisting"> "buffer" <a class="link" href="GtkEntryBuffer.html" title="GtkEntryBuffer"><span class="type">GtkEntryBuffer</span></a>* : Read / Write / Construct</pre>
|
2535
2456
|
<p>Text buffer object which actually stores entry text.</p>
|
2536
2457
|
</div>
|
2537
2458
|
<hr>
|
2538
|
-
<div class="refsect2"
|
2459
|
+
<div class="refsect2">
|
2539
2460
|
<a name="GtkEntry--caps-lock-warning"></a><h3>The <code class="literal">"caps-lock-warning"</code> property</h3>
|
2540
2461
|
<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>
|
2541
2462
|
<p>
|
@@ -2550,7 +2471,7 @@ other purpose.
|
|
2550
2471
|
<p class="since">Since 2.16</p>
|
2551
2472
|
</div>
|
2552
2473
|
<hr>
|
2553
|
-
<div class="refsect2"
|
2474
|
+
<div class="refsect2">
|
2554
2475
|
<a name="GtkEntry--cursor-position"></a><h3>The <code class="literal">"cursor-position"</code> property</h3>
|
2555
2476
|
<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>
|
2556
2477
|
<p>The current position of the insertion cursor in chars.</p>
|
@@ -2558,21 +2479,21 @@ other purpose.
|
|
2558
2479
|
<p>Default value: 0</p>
|
2559
2480
|
</div>
|
2560
2481
|
<hr>
|
2561
|
-
<div class="refsect2"
|
2482
|
+
<div class="refsect2">
|
2562
2483
|
<a name="GtkEntry--editable"></a><h3>The <code class="literal">"editable"</code> property</h3>
|
2563
2484
|
<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>
|
2564
2485
|
<p>Whether the entry contents can be edited.</p>
|
2565
2486
|
<p>Default value: TRUE</p>
|
2566
2487
|
</div>
|
2567
2488
|
<hr>
|
2568
|
-
<div class="refsect2"
|
2489
|
+
<div class="refsect2">
|
2569
2490
|
<a name="GtkEntry--has-frame"></a><h3>The <code class="literal">"has-frame"</code> property</h3>
|
2570
2491
|
<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>
|
2571
2492
|
<p>FALSE removes outside bevel from entry.</p>
|
2572
2493
|
<p>Default value: TRUE</p>
|
2573
2494
|
</div>
|
2574
2495
|
<hr>
|
2575
|
-
<div class="refsect2"
|
2496
|
+
<div class="refsect2">
|
2576
2497
|
<a name="GtkEntry--im-module"></a><h3>The <code class="literal">"im-module"</code> property</h3>
|
2577
2498
|
<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>
|
2578
2499
|
<p>
|
@@ -2588,16 +2509,16 @@ system-wide IM module setting. See the GtkSettings
|
|
2588
2509
|
<p class="since">Since 2.16</p>
|
2589
2510
|
</div>
|
2590
2511
|
<hr>
|
2591
|
-
<div class="refsect2"
|
2512
|
+
<div class="refsect2">
|
2592
2513
|
<a name="GtkEntry--inner-border"></a><h3>The <code class="literal">"inner-border"</code> property</h3>
|
2593
|
-
<pre class="programlisting"> "inner-border" <a class="link" href="GtkStyle.html#GtkBorder"
|
2514
|
+
<pre class="programlisting"> "inner-border" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read / Write</pre>
|
2594
2515
|
<p>
|
2595
2516
|
Sets the text area's border between the text and the frame.
|
2596
2517
|
</p>
|
2597
2518
|
<p class="since">Since 2.10</p>
|
2598
2519
|
</div>
|
2599
2520
|
<hr>
|
2600
|
-
<div class="refsect2"
|
2521
|
+
<div class="refsect2">
|
2601
2522
|
<a name="GtkEntry--invisible-char"></a><h3>The <code class="literal">"invisible-char"</code> property</h3>
|
2602
2523
|
<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>
|
2603
2524
|
<p>
|
@@ -2615,7 +2536,7 @@ to the list of candidates.
|
|
2615
2536
|
<p class="since">Since 2.18</p>
|
2616
2537
|
</div>
|
2617
2538
|
<hr>
|
2618
|
-
<div class="refsect2"
|
2539
|
+
<div class="refsect2">
|
2619
2540
|
<a name="GtkEntry--invisible-char-set"></a><h3>The <code class="literal">"invisible-char-set"</code> property</h3>
|
2620
2541
|
<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>
|
2621
2542
|
<p>
|
@@ -2625,7 +2546,7 @@ Whether the invisible char has been set for the <a class="link" href="GtkEntry.h
|
|
2625
2546
|
<p class="since">Since 2.16</p>
|
2626
2547
|
</div>
|
2627
2548
|
<hr>
|
2628
|
-
<div class="refsect2"
|
2549
|
+
<div class="refsect2">
|
2629
2550
|
<a name="GtkEntry--max-length"></a><h3>The <code class="literal">"max-length"</code> property</h3>
|
2630
2551
|
<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>
|
2631
2552
|
<p>Maximum number of characters for this entry. Zero if no maximum.</p>
|
@@ -2633,7 +2554,7 @@ Whether the invisible char has been set for the <a class="link" href="GtkEntry.h
|
|
2633
2554
|
<p>Default value: 0</p>
|
2634
2555
|
</div>
|
2635
2556
|
<hr>
|
2636
|
-
<div class="refsect2"
|
2557
|
+
<div class="refsect2">
|
2637
2558
|
<a name="GtkEntry--overwrite-mode"></a><h3>The <code class="literal">"overwrite-mode"</code> property</h3>
|
2638
2559
|
<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>
|
2639
2560
|
<p>
|
@@ -2643,7 +2564,7 @@ If text is overwritten when typing in the <a class="link" href="GtkEntry.html" t
|
|
2643
2564
|
<p class="since">Since 2.14</p>
|
2644
2565
|
</div>
|
2645
2566
|
<hr>
|
2646
|
-
<div class="refsect2"
|
2567
|
+
<div class="refsect2">
|
2647
2568
|
<a name="GtkEntry--primary-icon-activatable"></a><h3>The <code class="literal">"primary-icon-activatable"</code> property</h3>
|
2648
2569
|
<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>
|
2649
2570
|
<p>
|
@@ -2661,7 +2582,7 @@ informational purposes.
|
|
2661
2582
|
<p class="since">Since 2.16</p>
|
2662
2583
|
</div>
|
2663
2584
|
<hr>
|
2664
|
-
<div class="refsect2"
|
2585
|
+
<div class="refsect2">
|
2665
2586
|
<a name="GtkEntry--primary-icon-gicon"></a><h3>The <code class="literal">"primary-icon-gicon"</code> property</h3>
|
2666
2587
|
<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>
|
2667
2588
|
<p>
|
@@ -2670,7 +2591,7 @@ The <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class
|
|
2670
2591
|
<p class="since">Since 2.16</p>
|
2671
2592
|
</div>
|
2672
2593
|
<hr>
|
2673
|
-
<div class="refsect2"
|
2594
|
+
<div class="refsect2">
|
2674
2595
|
<a name="GtkEntry--primary-icon-name"></a><h3>The <code class="literal">"primary-icon-name"</code> property</h3>
|
2675
2596
|
<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>
|
2676
2597
|
<p>
|
@@ -2680,16 +2601,16 @@ The icon name to use for the primary icon for the entry.
|
|
2680
2601
|
<p class="since">Since 2.16</p>
|
2681
2602
|
</div>
|
2682
2603
|
<hr>
|
2683
|
-
<div class="refsect2"
|
2604
|
+
<div class="refsect2">
|
2684
2605
|
<a name="GtkEntry--primary-icon-pixbuf"></a><h3>The <code class="literal">"primary-icon-pixbuf"</code> property</h3>
|
2685
|
-
<pre class="programlisting"> "primary-icon-pixbuf" <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
2606
|
+
<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>
|
2686
2607
|
<p>
|
2687
2608
|
A pixbuf to use as the primary icon for the entry.
|
2688
2609
|
</p>
|
2689
2610
|
<p class="since">Since 2.16</p>
|
2690
2611
|
</div>
|
2691
2612
|
<hr>
|
2692
|
-
<div class="refsect2"
|
2613
|
+
<div class="refsect2">
|
2693
2614
|
<a name="GtkEntry--primary-icon-sensitive"></a><h3>The <code class="literal">"primary-icon-sensitive"</code> property</h3>
|
2694
2615
|
<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>
|
2695
2616
|
<p>
|
@@ -2708,7 +2629,7 @@ when clicked is currently not available.
|
|
2708
2629
|
<p class="since">Since 2.16</p>
|
2709
2630
|
</div>
|
2710
2631
|
<hr>
|
2711
|
-
<div class="refsect2"
|
2632
|
+
<div class="refsect2">
|
2712
2633
|
<a name="GtkEntry--primary-icon-stock"></a><h3>The <code class="literal">"primary-icon-stock"</code> property</h3>
|
2713
2634
|
<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>
|
2714
2635
|
<p>
|
@@ -2718,7 +2639,7 @@ The stock id to use for the primary icon for the entry.
|
|
2718
2639
|
<p class="since">Since 2.16</p>
|
2719
2640
|
</div>
|
2720
2641
|
<hr>
|
2721
|
-
<div class="refsect2"
|
2642
|
+
<div class="refsect2">
|
2722
2643
|
<a name="GtkEntry--primary-icon-storage-type"></a><h3>The <code class="literal">"primary-icon-storage-type"</code> property</h3>
|
2723
2644
|
<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>
|
2724
2645
|
<p>
|
@@ -2728,7 +2649,7 @@ The representation which is used for the primary icon of the entry.
|
|
2728
2649
|
<p class="since">Since 2.16</p>
|
2729
2650
|
</div>
|
2730
2651
|
<hr>
|
2731
|
-
<div class="refsect2"
|
2652
|
+
<div class="refsect2">
|
2732
2653
|
<a name="GtkEntry--primary-icon-tooltip-markup"></a><h3>The <code class="literal">"primary-icon-tooltip-markup"</code> property</h3>
|
2733
2654
|
<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>
|
2734
2655
|
<p>
|
@@ -2743,7 +2664,7 @@ Also see <a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-markup"
|
|
2743
2664
|
<p class="since">Since 2.16</p>
|
2744
2665
|
</div>
|
2745
2666
|
<hr>
|
2746
|
-
<div class="refsect2"
|
2667
|
+
<div class="refsect2">
|
2747
2668
|
<a name="GtkEntry--primary-icon-tooltip-text"></a><h3>The <code class="literal">"primary-icon-tooltip-text"</code> property</h3>
|
2748
2669
|
<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>
|
2749
2670
|
<p>
|
@@ -2756,7 +2677,7 @@ Also see <a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-text" ti
|
|
2756
2677
|
<p class="since">Since 2.16</p>
|
2757
2678
|
</div>
|
2758
2679
|
<hr>
|
2759
|
-
<div class="refsect2"
|
2680
|
+
<div class="refsect2">
|
2760
2681
|
<a name="GtkEntry--progress-fraction"></a><h3>The <code class="literal">"progress-fraction"</code> property</h3>
|
2761
2682
|
<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>
|
2762
2683
|
<p>
|
@@ -2767,7 +2688,7 @@ The current fraction of the task that's been completed.
|
|
2767
2688
|
<p class="since">Since 2.16</p>
|
2768
2689
|
</div>
|
2769
2690
|
<hr>
|
2770
|
-
<div class="refsect2"
|
2691
|
+
<div class="refsect2">
|
2771
2692
|
<a name="GtkEntry--progress-pulse-step"></a><h3>The <code class="literal">"progress-pulse-step"</code> property</h3>
|
2772
2693
|
<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>
|
2773
2694
|
<p>
|
@@ -2779,7 +2700,7 @@ bouncing block for each call to <a class="link" href="GtkEntry.html#gtk-entry-pr
|
|
2779
2700
|
<p class="since">Since 2.16</p>
|
2780
2701
|
</div>
|
2781
2702
|
<hr>
|
2782
|
-
<div class="refsect2"
|
2703
|
+
<div class="refsect2">
|
2783
2704
|
<a name="GtkEntry--scroll-offset"></a><h3>The <code class="literal">"scroll-offset"</code> property</h3>
|
2784
2705
|
<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>
|
2785
2706
|
<p>Number of pixels of the entry scrolled off the screen to the left.</p>
|
@@ -2787,7 +2708,7 @@ bouncing block for each call to <a class="link" href="GtkEntry.html#gtk-entry-pr
|
|
2787
2708
|
<p>Default value: 0</p>
|
2788
2709
|
</div>
|
2789
2710
|
<hr>
|
2790
|
-
<div class="refsect2"
|
2711
|
+
<div class="refsect2">
|
2791
2712
|
<a name="GtkEntry--secondary-icon-activatable"></a><h3>The <code class="literal">"secondary-icon-activatable"</code> property</h3>
|
2792
2713
|
<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>
|
2793
2714
|
<p>
|
@@ -2805,7 +2726,7 @@ informational purposes.
|
|
2805
2726
|
<p class="since">Since 2.16</p>
|
2806
2727
|
</div>
|
2807
2728
|
<hr>
|
2808
|
-
<div class="refsect2"
|
2729
|
+
<div class="refsect2">
|
2809
2730
|
<a name="GtkEntry--secondary-icon-gicon"></a><h3>The <code class="literal">"secondary-icon-gicon"</code> property</h3>
|
2810
2731
|
<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>
|
2811
2732
|
<p>
|
@@ -2814,7 +2735,7 @@ The <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class
|
|
2814
2735
|
<p class="since">Since 2.16</p>
|
2815
2736
|
</div>
|
2816
2737
|
<hr>
|
2817
|
-
<div class="refsect2"
|
2738
|
+
<div class="refsect2">
|
2818
2739
|
<a name="GtkEntry--secondary-icon-name"></a><h3>The <code class="literal">"secondary-icon-name"</code> property</h3>
|
2819
2740
|
<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>
|
2820
2741
|
<p>
|
@@ -2824,16 +2745,16 @@ The icon name to use for the secondary icon for the entry.
|
|
2824
2745
|
<p class="since">Since 2.16</p>
|
2825
2746
|
</div>
|
2826
2747
|
<hr>
|
2827
|
-
<div class="refsect2"
|
2748
|
+
<div class="refsect2">
|
2828
2749
|
<a name="GtkEntry--secondary-icon-pixbuf"></a><h3>The <code class="literal">"secondary-icon-pixbuf"</code> property</h3>
|
2829
|
-
<pre class="programlisting"> "secondary-icon-pixbuf" <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
2750
|
+
<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>
|
2830
2751
|
<p>
|
2831
2752
|
An pixbuf to use as the secondary icon for the entry.
|
2832
2753
|
</p>
|
2833
2754
|
<p class="since">Since 2.16</p>
|
2834
2755
|
</div>
|
2835
2756
|
<hr>
|
2836
|
-
<div class="refsect2"
|
2757
|
+
<div class="refsect2">
|
2837
2758
|
<a name="GtkEntry--secondary-icon-sensitive"></a><h3>The <code class="literal">"secondary-icon-sensitive"</code> property</h3>
|
2838
2759
|
<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>
|
2839
2760
|
<p>
|
@@ -2852,7 +2773,7 @@ when clicked is currently not available.
|
|
2852
2773
|
<p class="since">Since 2.16</p>
|
2853
2774
|
</div>
|
2854
2775
|
<hr>
|
2855
|
-
<div class="refsect2"
|
2776
|
+
<div class="refsect2">
|
2856
2777
|
<a name="GtkEntry--secondary-icon-stock"></a><h3>The <code class="literal">"secondary-icon-stock"</code> property</h3>
|
2857
2778
|
<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>
|
2858
2779
|
<p>
|
@@ -2862,7 +2783,7 @@ The stock id to use for the secondary icon for the entry.
|
|
2862
2783
|
<p class="since">Since 2.16</p>
|
2863
2784
|
</div>
|
2864
2785
|
<hr>
|
2865
|
-
<div class="refsect2"
|
2786
|
+
<div class="refsect2">
|
2866
2787
|
<a name="GtkEntry--secondary-icon-storage-type"></a><h3>The <code class="literal">"secondary-icon-storage-type"</code> property</h3>
|
2867
2788
|
<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>
|
2868
2789
|
<p>
|
@@ -2872,7 +2793,7 @@ The representation which is used for the secondary icon of the entry.
|
|
2872
2793
|
<p class="since">Since 2.16</p>
|
2873
2794
|
</div>
|
2874
2795
|
<hr>
|
2875
|
-
<div class="refsect2"
|
2796
|
+
<div class="refsect2">
|
2876
2797
|
<a name="GtkEntry--secondary-icon-tooltip-markup"></a><h3>The <code class="literal">"secondary-icon-tooltip-markup"</code> property</h3>
|
2877
2798
|
<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>
|
2878
2799
|
<p>
|
@@ -2887,7 +2808,7 @@ Also see <a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-markup"
|
|
2887
2808
|
<p class="since">Since 2.16</p>
|
2888
2809
|
</div>
|
2889
2810
|
<hr>
|
2890
|
-
<div class="refsect2"
|
2811
|
+
<div class="refsect2">
|
2891
2812
|
<a name="GtkEntry--secondary-icon-tooltip-text"></a><h3>The <code class="literal">"secondary-icon-tooltip-text"</code> property</h3>
|
2892
2813
|
<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>
|
2893
2814
|
<p>
|
@@ -2900,7 +2821,7 @@ Also see <a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-text" ti
|
|
2900
2821
|
<p class="since">Since 2.16</p>
|
2901
2822
|
</div>
|
2902
2823
|
<hr>
|
2903
|
-
<div class="refsect2"
|
2824
|
+
<div class="refsect2">
|
2904
2825
|
<a name="GtkEntry--selection-bound"></a><h3>The <code class="literal">"selection-bound"</code> property</h3>
|
2905
2826
|
<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>
|
2906
2827
|
<p>The position of the opposite end of the selection from the cursor in chars.</p>
|
@@ -2908,7 +2829,7 @@ Also see <a class="link" href="GtkEntry.html#gtk-entry-set-icon-tooltip-text" ti
|
|
2908
2829
|
<p>Default value: 0</p>
|
2909
2830
|
</div>
|
2910
2831
|
<hr>
|
2911
|
-
<div class="refsect2"
|
2832
|
+
<div class="refsect2">
|
2912
2833
|
<a name="GtkEntry--shadow-type"></a><h3>The <code class="literal">"shadow-type"</code> property</h3>
|
2913
2834
|
<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>
|
2914
2835
|
<p>
|
@@ -2919,14 +2840,14 @@ Which kind of shadow to draw around the entry when
|
|
2919
2840
|
<p class="since">Since 2.12</p>
|
2920
2841
|
</div>
|
2921
2842
|
<hr>
|
2922
|
-
<div class="refsect2"
|
2843
|
+
<div class="refsect2">
|
2923
2844
|
<a name="GtkEntry--text"></a><h3>The <code class="literal">"text"</code> property</h3>
|
2924
2845
|
<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>
|
2925
2846
|
<p>The contents of the entry.</p>
|
2926
2847
|
<p>Default value: ""</p>
|
2927
2848
|
</div>
|
2928
2849
|
<hr>
|
2929
|
-
<div class="refsect2"
|
2850
|
+
<div class="refsect2">
|
2930
2851
|
<a name="GtkEntry--text-length"></a><h3>The <code class="literal">"text-length"</code> property</h3>
|
2931
2852
|
<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>
|
2932
2853
|
<p>
|
@@ -2937,7 +2858,7 @@ The length of the text in the <a class="link" href="GtkEntry.html" title="GtkEnt
|
|
2937
2858
|
<p class="since">Since 2.14</p>
|
2938
2859
|
</div>
|
2939
2860
|
<hr>
|
2940
|
-
<div class="refsect2"
|
2861
|
+
<div class="refsect2">
|
2941
2862
|
<a name="GtkEntry--truncate-multiline"></a><h3>The <code class="literal">"truncate-multiline"</code> property</h3>
|
2942
2863
|
<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>
|
2943
2864
|
<p>
|
@@ -2947,14 +2868,14 @@ When <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.
|
|
2947
2868
|
<p class="since">Since 2.10</p>
|
2948
2869
|
</div>
|
2949
2870
|
<hr>
|
2950
|
-
<div class="refsect2"
|
2871
|
+
<div class="refsect2">
|
2951
2872
|
<a name="GtkEntry--visibility"></a><h3>The <code class="literal">"visibility"</code> property</h3>
|
2952
2873
|
<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>
|
2953
2874
|
<p>FALSE displays the "invisible char" instead of the actual text (password mode).</p>
|
2954
2875
|
<p>Default value: TRUE</p>
|
2955
2876
|
</div>
|
2956
2877
|
<hr>
|
2957
|
-
<div class="refsect2"
|
2878
|
+
<div class="refsect2">
|
2958
2879
|
<a name="GtkEntry--width-chars"></a><h3>The <code class="literal">"width-chars"</code> property</h3>
|
2959
2880
|
<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>
|
2960
2881
|
<p>Number of characters to leave space for in the entry.</p>
|
@@ -2962,7 +2883,7 @@ When <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.
|
|
2962
2883
|
<p>Default value: -1</p>
|
2963
2884
|
</div>
|
2964
2885
|
<hr>
|
2965
|
-
<div class="refsect2"
|
2886
|
+
<div class="refsect2">
|
2966
2887
|
<a name="GtkEntry--xalign"></a><h3>The <code class="literal">"xalign"</code> property</h3>
|
2967
2888
|
<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>
|
2968
2889
|
<p>
|
@@ -2974,9 +2895,9 @@ Reversed for RTL layouts.
|
|
2974
2895
|
<p class="since">Since 2.4</p>
|
2975
2896
|
</div>
|
2976
2897
|
</div>
|
2977
|
-
<div class="refsect1"
|
2898
|
+
<div class="refsect1">
|
2978
2899
|
<a name="GtkEntry.style-property-details"></a><h2>Style Property Details</h2>
|
2979
|
-
<div class="refsect2"
|
2900
|
+
<div class="refsect2">
|
2980
2901
|
<a name="GtkEntry--s-icon-prelight"></a><h3>The <code class="literal">"icon-prelight"</code> style property</h3>
|
2981
2902
|
<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>
|
2982
2903
|
<p>
|
@@ -2987,16 +2908,16 @@ icons prelight on mouseover.
|
|
2987
2908
|
<p class="since">Since 2.16</p>
|
2988
2909
|
</div>
|
2989
2910
|
<hr>
|
2990
|
-
<div class="refsect2"
|
2911
|
+
<div class="refsect2">
|
2991
2912
|
<a name="GtkEntry--s-inner-border"></a><h3>The <code class="literal">"inner-border"</code> style property</h3>
|
2992
|
-
<pre class="programlisting"> "inner-border" <a class="link" href="GtkStyle.html#GtkBorder"
|
2913
|
+
<pre class="programlisting"> "inner-border" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read</pre>
|
2993
2914
|
<p>
|
2994
2915
|
Sets the text area's border between the text and the frame.
|
2995
2916
|
</p>
|
2996
2917
|
<p class="since">Since 2.10</p>
|
2997
2918
|
</div>
|
2998
2919
|
<hr>
|
2999
|
-
<div class="refsect2"
|
2920
|
+
<div class="refsect2">
|
3000
2921
|
<a name="GtkEntry--s-invisible-char"></a><h3>The <code class="literal">"invisible-char"</code> style property</h3>
|
3001
2922
|
<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>
|
3002
2923
|
<p>
|
@@ -3014,19 +2935,19 @@ to the list of candidates.
|
|
3014
2935
|
<p class="since">Since 2.18</p>
|
3015
2936
|
</div>
|
3016
2937
|
<hr>
|
3017
|
-
<div class="refsect2"
|
2938
|
+
<div class="refsect2">
|
3018
2939
|
<a name="GtkEntry--s-progress-border"></a><h3>The <code class="literal">"progress-border"</code> style property</h3>
|
3019
|
-
<pre class="programlisting"> "progress-border" <a class="link" href="GtkStyle.html#GtkBorder"
|
2940
|
+
<pre class="programlisting"> "progress-border" <a class="link" href="GtkStyle.html#GtkBorder"><span class="type">GtkBorder</span></a>* : Read</pre>
|
3020
2941
|
<p>
|
3021
2942
|
The border around the progress bar in the entry.
|
3022
2943
|
</p>
|
3023
2944
|
<p class="since">Since 2.16</p>
|
3024
2945
|
</div>
|
3025
2946
|
<hr>
|
3026
|
-
<div class="refsect2"
|
2947
|
+
<div class="refsect2">
|
3027
2948
|
<a name="GtkEntry--s-state-hint"></a><h3>The <code class="literal">"state-hint"</code> style property</h3>
|
3028
2949
|
<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>
|
3029
|
-
<div class="warning"
|
2950
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
3030
2951
|
<h3 class="title">Warning</h3>
|
3031
2952
|
<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>
|
3032
2953
|
</div>
|
@@ -3038,12 +2959,12 @@ drawing the shadow and the widget background.
|
|
3038
2959
|
<p class="since">Since 2.16</p>
|
3039
2960
|
</div>
|
3040
2961
|
</div>
|
3041
|
-
<div class="refsect1"
|
2962
|
+
<div class="refsect1">
|
3042
2963
|
<a name="GtkEntry.signal-details"></a><h2>Signal Details</h2>
|
3043
|
-
<div class="refsect2"
|
2964
|
+
<div class="refsect2">
|
3044
2965
|
<a name="GtkEntry-activate"></a><h3>The <code class="literal">"activate"</code> signal</h3>
|
3045
2966
|
<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,
|
3046
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
2967
|
+
<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>
|
3047
2968
|
<p>
|
3048
2969
|
A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
3049
2970
|
which gets emitted when the user activates the entry.
|
@@ -3061,8 +2982,7 @@ The default bindings for this signal are all forms of the Enter key.
|
|
3061
2982
|
<tbody>
|
3062
2983
|
<tr>
|
3063
2984
|
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3064
|
-
<td>The entry on which the signal is emitted
|
3065
|
-
</td>
|
2985
|
+
<td>The entry on which the signal is emitted</td>
|
3066
2986
|
</tr>
|
3067
2987
|
<tr>
|
3068
2988
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3072,10 +2992,10 @@ The default bindings for this signal are all forms of the Enter key.
|
|
3072
2992
|
</table></div>
|
3073
2993
|
</div>
|
3074
2994
|
<hr>
|
3075
|
-
<div class="refsect2"
|
2995
|
+
<div class="refsect2">
|
3076
2996
|
<a name="GtkEntry-backspace"></a><h3>The <code class="literal">"backspace"</code> signal</h3>
|
3077
2997
|
<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,
|
3078
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
2998
|
+
<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>
|
3079
2999
|
<p>
|
3080
3000
|
The ::backspace signal is a
|
3081
3001
|
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
@@ -3090,8 +3010,7 @@ Backspace and Shift-Backspace.
|
|
3090
3010
|
<tbody>
|
3091
3011
|
<tr>
|
3092
3012
|
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3093
|
-
<td>the object which received the signal
|
3094
|
-
</td>
|
3013
|
+
<td>the object which received the signal</td>
|
3095
3014
|
</tr>
|
3096
3015
|
<tr>
|
3097
3016
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3101,10 +3020,10 @@ Backspace and Shift-Backspace.
|
|
3101
3020
|
</table></div>
|
3102
3021
|
</div>
|
3103
3022
|
<hr>
|
3104
|
-
<div class="refsect2"
|
3023
|
+
<div class="refsect2">
|
3105
3024
|
<a name="GtkEntry-copy-clipboard"></a><h3>The <code class="literal">"copy-clipboard"</code> signal</h3>
|
3106
3025
|
<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,
|
3107
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
3026
|
+
<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>
|
3108
3027
|
<p>
|
3109
3028
|
The ::copy-clipboard signal is a
|
3110
3029
|
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
@@ -3119,8 +3038,7 @@ Ctrl-c and Ctrl-Insert.
|
|
3119
3038
|
<tbody>
|
3120
3039
|
<tr>
|
3121
3040
|
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3122
|
-
<td>the object which received the signal
|
3123
|
-
</td>
|
3041
|
+
<td>the object which received the signal</td>
|
3124
3042
|
</tr>
|
3125
3043
|
<tr>
|
3126
3044
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3130,10 +3048,10 @@ Ctrl-c and Ctrl-Insert.
|
|
3130
3048
|
</table></div>
|
3131
3049
|
</div>
|
3132
3050
|
<hr>
|
3133
|
-
<div class="refsect2"
|
3051
|
+
<div class="refsect2">
|
3134
3052
|
<a name="GtkEntry-cut-clipboard"></a><h3>The <code class="literal">"cut-clipboard"</code> signal</h3>
|
3135
3053
|
<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,
|
3136
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
3054
|
+
<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>
|
3137
3055
|
<p>
|
3138
3056
|
The ::cut-clipboard signal is a
|
3139
3057
|
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
@@ -3148,8 +3066,7 @@ Ctrl-x and Shift-Delete.
|
|
3148
3066
|
<tbody>
|
3149
3067
|
<tr>
|
3150
3068
|
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3151
|
-
<td>the object which received the signal
|
3152
|
-
</td>
|
3069
|
+
<td>the object which received the signal</td>
|
3153
3070
|
</tr>
|
3154
3071
|
<tr>
|
3155
3072
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3159,12 +3076,12 @@ Ctrl-x and Shift-Delete.
|
|
3159
3076
|
</table></div>
|
3160
3077
|
</div>
|
3161
3078
|
<hr>
|
3162
|
-
<div class="refsect2"
|
3079
|
+
<div class="refsect2">
|
3163
3080
|
<a name="GtkEntry-delete-from-cursor"></a><h3>The <code class="literal">"delete-from-cursor"</code> signal</h3>
|
3164
3081
|
<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,
|
3165
3082
|
<a class="link" href="gtk-Standard-Enumerations.html#GtkDeleteType" title="enum GtkDeleteType"><span class="type">GtkDeleteType</span></a> type,
|
3166
3083
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
|
3167
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
3084
|
+
<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>
|
3168
3085
|
<p>
|
3169
3086
|
The ::delete-from-cursor signal is a
|
3170
3087
|
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
@@ -3185,8 +3102,7 @@ deleting a word.
|
|
3185
3102
|
<tbody>
|
3186
3103
|
<tr>
|
3187
3104
|
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3188
|
-
<td>the object which received the signal
|
3189
|
-
</td>
|
3105
|
+
<td>the object which received the signal</td>
|
3190
3106
|
</tr>
|
3191
3107
|
<tr>
|
3192
3108
|
<td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
|
@@ -3195,8 +3111,7 @@ deleting a word.
|
|
3195
3111
|
</tr>
|
3196
3112
|
<tr>
|
3197
3113
|
<td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
|
3198
|
-
<td>the number of <em class="parameter"><code>type</code></em> units to delete
|
3199
|
-
</td>
|
3114
|
+
<td>the number of <em class="parameter"><code>type</code></em> units to delete</td>
|
3200
3115
|
</tr>
|
3201
3116
|
<tr>
|
3202
3117
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3206,12 +3121,12 @@ deleting a word.
|
|
3206
3121
|
</table></div>
|
3207
3122
|
</div>
|
3208
3123
|
<hr>
|
3209
|
-
<div class="refsect2"
|
3124
|
+
<div class="refsect2">
|
3210
3125
|
<a name="GtkEntry-icon-press"></a><h3>The <code class="literal">"icon-press"</code> signal</h3>
|
3211
3126
|
<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,
|
3212
3127
|
<a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos,
|
3213
|
-
<a href="http://library.gnome.org/devel/
|
3214
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
|
3128
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
|
3129
|
+
<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>
|
3215
3130
|
<p>
|
3216
3131
|
The ::icon-press signal is emitted when an activatable icon
|
3217
3132
|
is clicked.
|
@@ -3221,18 +3136,15 @@ is clicked.
|
|
3221
3136
|
<tbody>
|
3222
3137
|
<tr>
|
3223
3138
|
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3224
|
-
<td>The entry on which the signal is emitted
|
3225
|
-
</td>
|
3139
|
+
<td>The entry on which the signal is emitted</td>
|
3226
3140
|
</tr>
|
3227
3141
|
<tr>
|
3228
3142
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
3229
|
-
<td>The position of the clicked icon
|
3230
|
-
</td>
|
3143
|
+
<td>The position of the clicked icon</td>
|
3231
3144
|
</tr>
|
3232
3145
|
<tr>
|
3233
3146
|
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
3234
|
-
<td>the button press event
|
3235
|
-
</td>
|
3147
|
+
<td>the button press event</td>
|
3236
3148
|
</tr>
|
3237
3149
|
<tr>
|
3238
3150
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3243,12 +3155,12 @@ is clicked.
|
|
3243
3155
|
<p class="since">Since 2.16</p>
|
3244
3156
|
</div>
|
3245
3157
|
<hr>
|
3246
|
-
<div class="refsect2"
|
3158
|
+
<div class="refsect2">
|
3247
3159
|
<a name="GtkEntry-icon-release"></a><h3>The <code class="literal">"icon-release"</code> signal</h3>
|
3248
3160
|
<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,
|
3249
3161
|
<a class="link" href="GtkEntry.html#GtkEntryIconPosition" title="enum GtkEntryIconPosition"><span class="type">GtkEntryIconPosition</span></a> icon_pos,
|
3250
|
-
<a href="http://library.gnome.org/devel/
|
3251
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
|
3162
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
|
3163
|
+
<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>
|
3252
3164
|
<p>
|
3253
3165
|
The ::icon-release signal is emitted on the button release from a
|
3254
3166
|
mouse click over an activatable icon.
|
@@ -3258,18 +3170,15 @@ mouse click over an activatable icon.
|
|
3258
3170
|
<tbody>
|
3259
3171
|
<tr>
|
3260
3172
|
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3261
|
-
<td>The entry on which the signal is emitted
|
3262
|
-
</td>
|
3173
|
+
<td>The entry on which the signal is emitted</td>
|
3263
3174
|
</tr>
|
3264
3175
|
<tr>
|
3265
3176
|
<td><p><span class="term"><em class="parameter"><code>icon_pos</code></em> :</span></p></td>
|
3266
|
-
<td>The position of the clicked icon
|
3267
|
-
</td>
|
3177
|
+
<td>The position of the clicked icon</td>
|
3268
3178
|
</tr>
|
3269
3179
|
<tr>
|
3270
3180
|
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
3271
|
-
<td>the button release event
|
3272
|
-
</td>
|
3181
|
+
<td>the button release event</td>
|
3273
3182
|
</tr>
|
3274
3183
|
<tr>
|
3275
3184
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3280,11 +3189,11 @@ mouse click over an activatable icon.
|
|
3280
3189
|
<p class="since">Since 2.16</p>
|
3281
3190
|
</div>
|
3282
3191
|
<hr>
|
3283
|
-
<div class="refsect2"
|
3192
|
+
<div class="refsect2">
|
3284
3193
|
<a name="GtkEntry-insert-at-cursor"></a><h3>The <code class="literal">"insert-at-cursor"</code> signal</h3>
|
3285
3194
|
<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,
|
3286
3195
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *string,
|
3287
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
3196
|
+
<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>
|
3288
3197
|
<p>
|
3289
3198
|
The ::insert-at-cursor signal is a
|
3290
3199
|
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
@@ -3299,13 +3208,11 @@ This signal has no default bindings.
|
|
3299
3208
|
<tbody>
|
3300
3209
|
<tr>
|
3301
3210
|
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3302
|
-
<td>the object which received the signal
|
3303
|
-
</td>
|
3211
|
+
<td>the object which received the signal</td>
|
3304
3212
|
</tr>
|
3305
3213
|
<tr>
|
3306
3214
|
<td><p><span class="term"><em class="parameter"><code>string</code></em> :</span></p></td>
|
3307
|
-
<td>the string to insert
|
3308
|
-
</td>
|
3215
|
+
<td>the string to insert</td>
|
3309
3216
|
</tr>
|
3310
3217
|
<tr>
|
3311
3218
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3315,13 +3222,13 @@ This signal has no default bindings.
|
|
3315
3222
|
</table></div>
|
3316
3223
|
</div>
|
3317
3224
|
<hr>
|
3318
|
-
<div class="refsect2"
|
3225
|
+
<div class="refsect2">
|
3319
3226
|
<a name="GtkEntry-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
|
3320
3227
|
<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,
|
3321
3228
|
<a class="link" href="gtk-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
|
3322
3229
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
|
3323
3230
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> extend_selection,
|
3324
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
3231
|
+
<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>
|
3325
3232
|
<p>
|
3326
3233
|
The ::move-cursor signal is a
|
3327
3234
|
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
@@ -3352,8 +3259,7 @@ There are too many key combinations to list them all here.
|
|
3352
3259
|
<tbody>
|
3353
3260
|
<tr>
|
3354
3261
|
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3355
|
-
<td>the object which received the signal
|
3356
|
-
</td>
|
3262
|
+
<td>the object which received the signal</td>
|
3357
3263
|
</tr>
|
3358
3264
|
<tr>
|
3359
3265
|
<td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
|
@@ -3362,14 +3268,12 @@ There are too many key combinations to list them all here.
|
|
3362
3268
|
</tr>
|
3363
3269
|
<tr>
|
3364
3270
|
<td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
|
3365
|
-
<td>the number of <em class="parameter"><code>step</code></em> units to move
|
3366
|
-
</td>
|
3271
|
+
<td>the number of <em class="parameter"><code>step</code></em> units to move</td>
|
3367
3272
|
</tr>
|
3368
3273
|
<tr>
|
3369
3274
|
<td><p><span class="term"><em class="parameter"><code>extend_selection</code></em> :</span></p></td>
|
3370
3275
|
<td>
|
3371
|
-
<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
|
3372
|
-
</td>
|
3276
|
+
<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>
|
3373
3277
|
</tr>
|
3374
3278
|
<tr>
|
3375
3279
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3379,10 +3283,10 @@ There are too many key combinations to list them all here.
|
|
3379
3283
|
</table></div>
|
3380
3284
|
</div>
|
3381
3285
|
<hr>
|
3382
|
-
<div class="refsect2"
|
3286
|
+
<div class="refsect2">
|
3383
3287
|
<a name="GtkEntry-paste-clipboard"></a><h3>The <code class="literal">"paste-clipboard"</code> signal</h3>
|
3384
3288
|
<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,
|
3385
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
3289
|
+
<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>
|
3386
3290
|
<p>
|
3387
3291
|
The ::paste-clipboard signal is a
|
3388
3292
|
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
@@ -3398,8 +3302,7 @@ Ctrl-v and Shift-Insert.
|
|
3398
3302
|
<tbody>
|
3399
3303
|
<tr>
|
3400
3304
|
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3401
|
-
<td>the object which received the signal
|
3402
|
-
</td>
|
3305
|
+
<td>the object which received the signal</td>
|
3403
3306
|
</tr>
|
3404
3307
|
<tr>
|
3405
3308
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3409,11 +3312,11 @@ Ctrl-v and Shift-Insert.
|
|
3409
3312
|
</table></div>
|
3410
3313
|
</div>
|
3411
3314
|
<hr>
|
3412
|
-
<div class="refsect2"
|
3315
|
+
<div class="refsect2">
|
3413
3316
|
<a name="GtkEntry-populate-popup"></a><h3>The <code class="literal">"populate-popup"</code> signal</h3>
|
3414
3317
|
<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,
|
3415
3318
|
<a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu,
|
3416
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
|
3319
|
+
<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>
|
3417
3320
|
<p>
|
3418
3321
|
The ::populate-popup signal gets emitted before showing the
|
3419
3322
|
context menu of the entry.
|
@@ -3427,13 +3330,11 @@ to this signal and append your menuitems to the <em class="parameter"><code>menu
|
|
3427
3330
|
<tbody>
|
3428
3331
|
<tr>
|
3429
3332
|
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3430
|
-
<td>The entry on which the signal is emitted
|
3431
|
-
</td>
|
3333
|
+
<td>The entry on which the signal is emitted</td>
|
3432
3334
|
</tr>
|
3433
3335
|
<tr>
|
3434
3336
|
<td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
|
3435
|
-
<td>the menu that is being populated
|
3436
|
-
</td>
|
3337
|
+
<td>the menu that is being populated</td>
|
3437
3338
|
</tr>
|
3438
3339
|
<tr>
|
3439
3340
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3443,11 +3344,11 @@ to this signal and append your menuitems to the <em class="parameter"><code>menu
|
|
3443
3344
|
</table></div>
|
3444
3345
|
</div>
|
3445
3346
|
<hr>
|
3446
|
-
<div class="refsect2"
|
3347
|
+
<div class="refsect2">
|
3447
3348
|
<a name="GtkEntry-preedit-changed"></a><h3>The <code class="literal">"preedit-changed"</code> signal</h3>
|
3448
3349
|
<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,
|
3449
3350
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *preedit,
|
3450
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
3351
|
+
<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>
|
3451
3352
|
<p>
|
3452
3353
|
If an input method is used, the typed text will not immediately
|
3453
3354
|
be committed to the buffer. So if you are interested in the text,
|
@@ -3458,13 +3359,11 @@ connect to this signal.
|
|
3458
3359
|
<tbody>
|
3459
3360
|
<tr>
|
3460
3361
|
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3461
|
-
<td>the object which received the signal
|
3462
|
-
</td>
|
3362
|
+
<td>the object which received the signal</td>
|
3463
3363
|
</tr>
|
3464
3364
|
<tr>
|
3465
3365
|
<td><p><span class="term"><em class="parameter"><code>preedit</code></em> :</span></p></td>
|
3466
|
-
<td>the current preedit string
|
3467
|
-
</td>
|
3366
|
+
<td>the current preedit string</td>
|
3468
3367
|
</tr>
|
3469
3368
|
<tr>
|
3470
3369
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3475,10 +3374,10 @@ connect to this signal.
|
|
3475
3374
|
<p class="since">Since 2.20</p>
|
3476
3375
|
</div>
|
3477
3376
|
<hr>
|
3478
|
-
<div class="refsect2"
|
3377
|
+
<div class="refsect2">
|
3479
3378
|
<a name="GtkEntry-toggle-overwrite"></a><h3>The <code class="literal">"toggle-overwrite"</code> signal</h3>
|
3480
3379
|
<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,
|
3481
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) :
|
3380
|
+
<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>
|
3482
3381
|
<p>
|
3483
3382
|
The ::toggle-overwrite signal is a
|
3484
3383
|
<a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
|
@@ -3492,8 +3391,7 @@ The default bindings for this signal is Insert.
|
|
3492
3391
|
<tbody>
|
3493
3392
|
<tr>
|
3494
3393
|
<td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
|
3495
|
-
<td>the object which received the signal
|
3496
|
-
</td>
|
3394
|
+
<td>the object which received the signal</td>
|
3497
3395
|
</tr>
|
3498
3396
|
<tr>
|
3499
3397
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3503,7 +3401,7 @@ The default bindings for this signal is Insert.
|
|
3503
3401
|
</table></div>
|
3504
3402
|
</div>
|
3505
3403
|
</div>
|
3506
|
-
<div class="refsect1"
|
3404
|
+
<div class="refsect1">
|
3507
3405
|
<a name="GtkEntry.see-also"></a><h2>See Also</h2>
|
3508
3406
|
<p>
|
3509
3407
|
</p>
|
@@ -3526,6 +3424,6 @@ The default bindings for this signal is Insert.
|
|
3526
3424
|
</div>
|
3527
3425
|
<div class="footer">
|
3528
3426
|
<hr>
|
3529
|
-
Generated by GTK-Doc V1.
|
3427
|
+
Generated by GTK-Doc V1.17</div>
|
3530
3428
|
</body>
|
3531
3429
|
</html>
|