gtk.entry
Module for [Entry] class
Types 3
[gtk.entry.Entry] is a single line text entry widget.
A fairly large set of key bindings are supported by default. If the entered text is longer than the allocation of the widget, the widget will scroll so that the cursor position is visible.
When using an entry for passwords and other sensitive information, it can be put into “password mode” using [gtk.entry.Entry.setVisibility]. In this mode, entered text is displayed using a “invisible” character. By default, GTK picks the best invisible character that is available in the current font, but it can be changed with [gtk.entry.Entry.setInvisibleChar].
[gtk.entry.Entry] has the ability to display progress or activity information behind the text. To make an entry display such information, use [gtk.entry.Entry.setProgressFraction] or [gtk.entry.Entry.setProgressPulseStep].
Additionally, [gtk.entry.Entry] can show icons at either side of the entry. These icons can be activatable by clicking, can be set up as drag source and can have tooltips. To add an icon, use [gtk.entry.Entry.setIconFromGicon] or one of the various other functions that set an icon from an icon name or a paintable. To trigger an action when the user clicks an icon, connect to the signal@Gtk.Entry::icon-press signal. To allow DND operations from an icon, use [gtk.entry.Entry.setIconDragSource]. To set a tooltip on an icon, use [gtk.entry.Entry.setIconTooltipText] or the corresponding function for markup.
Note that functionality or information that is only available by clicking on an icon in an entry may not be accessible at all to users which are not able to use a mouse or other pointing device. It is therefore recommended that any such functionality should also be available by other means, e.g. via the context menu of the entry.
CSS nodes
entry[.flat][.warning][.error]
├── text[.readonly]
├── image.left
├── image.right
╰── [progress[.pulse]][gtk.entry.Entry] has a main node with the name entry. Depending on the properties of the entry, the style classes .read-only and .flat may appear. The style classes .warning and .error may also be used with entries.
When the entry shows icons, it adds subnodes with the name image and the style class .left or .right, depending on where the icon appears.
When the entry shows progress, it adds a subnode with the name progress. The node has the style class .pulse when the shown progress is pulsing.
For all the subnodes added to the text node in various situations, see [gtk.text.Text].
GtkEntry as GtkBuildable
The [gtk.entry.Entry] implementation of the [gtk.buildable.Buildable] interface supports a custom <attributes> element, which supports any number of <attribute> elements. The <attribute> element has attributes named “name“, “value“, “start“ and “end“ and allows you to specify [pango.attribute.Attribute] values for this label.
An example of a UI definition fragment specifying Pango attributes:
<object class="GtkEntry">
<attributes>
<attribute name="weight" value="PANGO_WEIGHT_BOLD"/>
<attribute name="background" value="red" start="5" end="10"/>
</attributes>
</object>The start and end attributes specify the range of characters to which the Pango attribute applies. If start and end are not specified, the attribute is applied to the whole text. Note that specifying ranges does not make much sense with translatable attributes. Use markup embedded in the translatable content instead.
Accessibility
[gtk.entry.Entry] uses the [gtk.types.AccessibleRole.TextBox] role.
EntryGidBuilder builder()Get builder for [gtk.entry.Entry] Returns: New builder objectbool activatesDefault() @propertyGet `activatesDefault` property. Returns: Whether to activate the default widget when Enter is pressed.void activatesDefault(bool propval) @propertySet `activatesDefault` property. Params: propval = Whether to activate the default widget when Enter is pressed.pango.attr_list.AttrList attributes() @propertyGet `attributes` property. Returns: A list of Pango attributes to apply to the text of the entry.void attributes(pango.attr_list.AttrList propval) @propertySet `attributes` property. Params: propval = A list of Pango attributes to apply to the text of the entry.gtk.entry_buffer.EntryBuffer buffer() @propertyGet `buffer` property. Returns: The buffer object which actually stores the text.void buffer(gtk.entry_buffer.EntryBuffer propval) @propertySet `buffer` property. Params: propval = The buffer object which actually stores the text.gtk.entry_completion.EntryCompletion completion() @propertyGet `completion` property. Returns: The auxiliary completion object to use with the entry.void completion(gtk.entry_completion.EntryCompletion propval) @propertySet `completion` property. Params: propval = The auxiliary completion object to use with the entry.bool enableEmojiCompletion() @propertyGet `enableEmojiCompletion` property. Returns: Whether to suggest Emoji replacements for :-delimited names like `:heart:`.void enableEmojiCompletion(bool propval) @propertySet `enableEmojiCompletion` property. Params: propval = Whether to suggest Emoji replacements for :-delimited names like `:heart:`.gio.menu_model.MenuModel extraMenu() @propertyGet `extraMenu` property. Returns: A menu model whose contents will be appended to the context menu.void extraMenu(gio.menu_model.MenuModel propval) @propertySet `extraMenu` property. Params: propval = A menu model whose contents will be appended to the context menu.void hasFrame(bool propval) @propertySet `hasFrame` property. Params: propval = Whether the entry should draw a frame.string imModule() @propertyGet `imModule` property. Returns: Which IM (input method) module should be used for this entry.void imModule(string propval) @propertySet `imModule` property. Params: propval = Which IM (input method) module should be used for this entry.gtk.types.InputHints inputHints() @propertyGet `inputHints` property. Returns: Additional hints that allow input methods to fine-tune their behavior.void inputHints(gtk.types.InputHints propval) @propertySet `inputHints` property. Params: propval = Additional hints that allow input methods to fine-tune their behavior.gtk.types.InputPurpose inputPurpose() @propertyGet `inputPurpose` property. Returns: The purpose of this text field.void inputPurpose(gtk.types.InputPurpose propval) @propertySet `inputPurpose` property. Params: propval = The purpose of this text field.uint invisibleChar() @propertyGet `invisibleChar` property. Returns: The character to use when masking entry contents (“password mode”).void invisibleChar(uint propval) @propertySet `invisibleChar` property. Params: propval = The character to use when masking entry contents (“password mode”).bool invisibleCharSet() @propertyGet `invisibleCharSet` property. Returns: Whether the invisible char has been set for the [gtk.entry.Entry].void invisibleCharSet(bool propval) @propertySet `invisibleCharSet` property. Params: propval = Whether the invisible char has been set for the [gtk.entry.Entry].int maxLength() @propertyGet `maxLength` property. Returns: Maximum number of characters for this entry.void maxLength(int propval) @propertySet `maxLength` property. Params: propval = Maximum number of characters for this entry.bool overwriteMode() @propertyGet `overwriteMode` property. Returns: If text is overwritten when typing in the [gtk.entry.Entry].void overwriteMode(bool propval) @propertySet `overwriteMode` property. Params: propval = If text is overwritten when typing in the [gtk.entry.Entry].string placeholderText() @propertyGet `placeholderText` property. Returns: The text that will be displayed in the [gtk.entry.Entry] when it is empty and unfocused.void placeholderText(string propval) @propertySet `placeholderText` property. Params: propval = The text that will be displayed in the [gtk.entry.Entry] when it is empty and unfocused.bool primaryIconActivatable() @propertyGet `primaryIconActivatable` property. Returns: Whether the primary icon is activatable.void primaryIconActivatable(bool propval) @propertySet `primaryIconActivatable` property. Params: propval = Whether the primary icon is activatable.gio.icon.Icon primaryIconGicon() @propertyGet `primaryIconGicon` property. Returns: The [gio.icon.Icon] to use for the primary icon for the entry.void primaryIconGicon(gio.icon.Icon propval) @propertySet `primaryIconGicon` property. Params: propval = The [gio.icon.Icon] to use for the primary icon for the entry.string primaryIconName() @propertyGet `primaryIconName` property. Returns: The icon name to use for the primary icon for the entry.void primaryIconName(string propval) @propertySet `primaryIconName` property. Params: propval = The icon name to use for the primary icon for the entry.gdk.paintable.Paintable primaryIconPaintable() @propertyGet `primaryIconPaintable` property. Returns: A [gdk.paintable.Paintable] to use as the primary icon for the entry.void primaryIconPaintable(gdk.paintable.Paintable propval) @propertySet `primaryIconPaintable` property. Params: propval = A [gdk.paintable.Paintable] to use as the primary icon for the entry.bool primaryIconSensitive() @propertyGet `primaryIconSensitive` property. Returns: Whether the primary icon is sensitive.void primaryIconSensitive(bool propval) @propertySet `primaryIconSensitive` property. Params: propval = Whether the primary icon is sensitive.gtk.types.ImageType primaryIconStorageType() @propertyGet `primaryIconStorageType` property. Returns: The representation which is used for the primary icon of the entry.string primaryIconTooltipMarkup() @propertyGet `primaryIconTooltipMarkup` property. Returns: The contents of the tooltip on the primary icon, with markup.void primaryIconTooltipMarkup(string propval) @propertySet `primaryIconTooltipMarkup` property. Params: propval = The contents of the tooltip on the primary icon, with markup.string primaryIconTooltipText() @propertyGet `primaryIconTooltipText` property. Returns: The contents of the tooltip on the primary icon.void primaryIconTooltipText(string propval) @propertySet `primaryIconTooltipText` property. Params: propval = The contents of the tooltip on the primary icon.double progressFraction() @propertyGet `progressFraction` property. Returns: The current fraction of the task that's been completed.void progressFraction(double propval) @propertySet `progressFraction` property. Params: propval = The current fraction of the task that's been completed.double progressPulseStep() @propertyGet `progressPulseStep` property. Returns: The fraction of total entry width to move the progress bouncing block for each pulse.void progressPulseStep(double propval) @propertySet `progressPulseStep` property. Params: propval = The fraction of total entry width to move the progress bouncing block for each pulse.int scrollOffset() @propertyGet `scrollOffset` property. Returns: Number of pixels of the entry scrolled off the screen to the left.bool secondaryIconActivatable() @propertyGet `secondaryIconActivatable` property. Returns: Whether the secondary icon is activatable.void secondaryIconActivatable(bool propval) @propertySet `secondaryIconActivatable` property. Params: propval = Whether the secondary icon is activatable.gio.icon.Icon secondaryIconGicon() @propertyGet `secondaryIconGicon` property. Returns: The [gio.icon.Icon] to use for the secondary icon for the entry.void secondaryIconGicon(gio.icon.Icon propval) @propertySet `secondaryIconGicon` property. Params: propval = The [gio.icon.Icon] to use for the secondary icon for the entry.string secondaryIconName() @propertyGet `secondaryIconName` property. Returns: The icon name to use for the secondary icon for the entry.void secondaryIconName(string propval) @propertySet `secondaryIconName` property. Params: propval = The icon name to use for the secondary icon for the entry.gdk.paintable.Paintable secondaryIconPaintable() @propertyGet `secondaryIconPaintable` property. Returns: A [gdk.paintable.Paintable] to use as the secondary icon for the entry.void secondaryIconPaintable(gdk.paintable.Paintable propval) @propertySet `secondaryIconPaintable` property. Params: propval = A [gdk.paintable.Paintable] to use as the secondary icon for the entry.bool secondaryIconSensitive() @propertyGet `secondaryIconSensitive` property. Returns: Whether the secondary icon is sensitive.void secondaryIconSensitive(bool propval) @propertySet `secondaryIconSensitive` property. Params: propval = Whether the secondary icon is sensitive.gtk.types.ImageType secondaryIconStorageType() @propertyGet `secondaryIconStorageType` property. Returns: The representation which is used for the secondary icon of the entry.string secondaryIconTooltipMarkup() @propertyGet `secondaryIconTooltipMarkup` property. Returns: The contents of the tooltip on the secondary icon, with markup.void secondaryIconTooltipMarkup(string propval) @propertySet `secondaryIconTooltipMarkup` property. Params: propval = The contents of the tooltip on the secondary icon, with markup.string secondaryIconTooltipText() @propertyGet `secondaryIconTooltipText` property. Returns: The contents of the tooltip on the secondary icon.void secondaryIconTooltipText(string propval) @propertySet `secondaryIconTooltipText` property. Params: propval = The contents of the tooltip on the secondary icon.bool showEmojiIcon() @propertyvoid showEmojiIcon(bool propval) @propertypango.tab_array.TabArray tabs() @propertyvoid tabs(pango.tab_array.TabArray propval) @propertyuint textLength() @propertyGet `textLength` property. Returns: The length of the text in the [gtk.entry.Entry].bool truncateMultiline() @propertyGet `truncateMultiline` property. Returns: When true, pasted multi-line text is truncated to the first line.void truncateMultiline(bool propval) @propertySet `truncateMultiline` property. Params: propval = When true, pasted multi-line text is truncated to the first line.bool visibility() @propertyGet `visibility` property. Returns: Whether the entry should show the “invisible char” instead of the actual text (“password mode”).void visibility(bool propval) @propertySet `visibility` property. Params: propval = Whether the entry should show the “invisible char” instead of the actual text (“password mode”).gtk.entry.Entry newWithBuffer(gtk.entry_buffer.EntryBuffer buffer)Creates a new entry with the specified text buffer.bool getActivatesDefault()Retrieves the value set by [gtk.entry.Entry.setActivatesDefault]. Returns: true if the entry will activate the default widgetfloat getAlignment()Gets the value set by [gtk.entry.Entry.setAlignment].pango.attr_list.AttrList getAttributes()Gets the attribute list of the [gtk.entry.Entry].gtk.entry_buffer.EntryBuffer getBuffer()Get the [gtk.entrybuffer.EntryBuffer] object which holds the text for this widget. Returns: A [gtk.entrybuffer.EntryBuffer] object.gtk.entry_completion.EntryCompletion getCompletion()Returns the auxiliary completion object currently in use by entry. Returns: The auxiliary completion object currently in use by entryint getCurrentIconDragSource()Returns the index of the icon which is the source of the current DND operation, or -1. Returns: index of the icon which is the source of the current DND operation, or -1.gio.menu_model.MenuModel getExtraMenu()Gets the menu model set with [gtk.entry.Entry.setExtraMenu]. Returns: the menu modelbool getHasFrame()Gets the value set by [gtk.entry.Entry.setHasFrame]. Returns: whether the entry has a beveled framebool getIconActivatable(gtk.types.EntryIconPosition iconPos)Returns whether the icon is activatable.void getIconArea(gtk.types.EntryIconPosition iconPos, out gdk.rectangle.Rectangle iconArea)Gets the area where entry’s icon at icon_pos is drawn.int getIconAtPos(int x, int y)Finds the icon at the given position and return its index.gio.icon.Icon getIconGicon(gtk.types.EntryIconPosition iconPos)Retrieves the [gio.icon.Icon] used for the icon.string getIconName(gtk.types.EntryIconPosition iconPos)Retrieves the icon name used for the icon.gdk.paintable.Paintable getIconPaintable(gtk.types.EntryIconPosition iconPos)Retrieves the [gdk.paintable.Paintable] used for the icon.bool getIconSensitive(gtk.types.EntryIconPosition iconPos)Returns whether the icon appears sensitive or insensitive.gtk.types.ImageType getIconStorageType(gtk.types.EntryIconPosition iconPos)Gets the type of representation being used by the icon to store image data.string getIconTooltipMarkup(gtk.types.EntryIconPosition iconPos)Gets the contents of the tooltip on the icon at the specified position in entry.string getIconTooltipText(gtk.types.EntryIconPosition iconPos)Gets the contents of the tooltip on the icon at the specified position in entry.gtk.types.InputHints getInputHints()Gets the input hints of this [gtk.entry.Entry]. Returns: the input hintsgtk.types.InputPurpose getInputPurpose()Gets the input purpose of the [gtk.entry.Entry]. Returns: the input purposedchar getInvisibleChar()Retrieves the character displayed in place of the actual text in “password mode”. Returns: the current invisible char, or 0, if the entry does not show invisible text at all.int getMaxLength()Retrieves the maximum allowed length of the text in entry.bool getOverwriteMode()Gets whether the [gtk.entry.Entry] is in overwrite mode. Returns: whether the text is overwritten when typing.string getPlaceholderText()Retrieves the text that will be displayed when entry is empty and unfocused Returns: a pointer to the placeholder text as a string. This string points to internally allocated storage in the widget ...double getProgressFraction()Returns the current fraction of the task that’s been completed.double getProgressPulseStep()Retrieves the pulse step set with [gtk.entry.Entry.setProgressPulseStep]. Returns: a fraction from 0.0 to 1.0pango.tab_array.TabArray getTabs()Gets the tabstops of the [gtk.entry.Entry].ushort getTextLength()Retrieves the current length of the text in entry.bool getVisibility()Retrieves whether the text in entry is visible.bool grabFocusWithoutSelecting()Causes entry to have keyboard focus.void progressPulse()Indicates that some progress is made, but you don’t know how much.void resetImContext()Reset the input method context of the entry if needed.void setActivatesDefault(bool setting)Sets whether pressing Enter in the entry will activate the default widget for the window containing the entry.void setAlignment(float xalign)Sets the alignment for the contents of the entry.void setAttributes(pango.attr_list.AttrList attrs)Sets a [pango.attr_list.AttrList].void setBuffer(gtk.entry_buffer.EntryBuffer buffer)Set the [gtk.entry_buffer.EntryBuffer] object which holds the text for this widget.void setCompletion(gtk.entry_completion.EntryCompletion completion = null)Sets completion to be the auxiliary completion object to use with entry.void setExtraMenu(gio.menu_model.MenuModel model = null)Sets a menu model to add when constructing the context menu for entry.void setHasFrame(bool setting)Sets whether the entry has a beveled frame around it.void setIconActivatable(gtk.types.EntryIconPosition iconPos, bool activatable)Sets whether the icon is activatable.void setIconDragSource(gtk.types.EntryIconPosition iconPos, gdk.content_provider.ContentProvider provider, gdk.types.DragAction actions)Sets up the icon at the given position as drag source.void setIconFromGicon(gtk.types.EntryIconPosition iconPos, gio.icon.Icon icon = null)Sets the icon shown in the entry at the specified position from the current icon theme.void setIconFromIconName(gtk.types.EntryIconPosition iconPos, string iconName = null)Sets the icon shown in the entry at the specified position from the current icon theme.void setIconFromPaintable(gtk.types.EntryIconPosition iconPos, gdk.paintable.Paintable paintable = null)Sets the icon shown in the specified position using a [gdk.paintable.Paintable].void setIconSensitive(gtk.types.EntryIconPosition iconPos, bool sensitive)Sets the sensitivity for the specified icon.void setIconTooltipMarkup(gtk.types.EntryIconPosition iconPos, string tooltip = null)Sets tooltip as the contents of the tooltip for the icon at the specified position.void setIconTooltipText(gtk.types.EntryIconPosition iconPos, string tooltip = null)Sets tooltip as the contents of the tooltip for the icon at the specified position.void setInputHints(gtk.types.InputHints hints)Set additional hints which allow input methods to fine-tune their behavior.void setInputPurpose(gtk.types.InputPurpose purpose)Sets the input purpose which can be used by input methods to adjust their behavior.void setInvisibleChar(dchar ch)Sets the character to use in place of the actual text in “password mode”.void setMaxLength(int max)Sets the maximum allowed length of the contents of the widget.void setOverwriteMode(bool overwrite)Sets whether the text is overwritten when typing in the [gtk.entry.Entry].void setPlaceholderText(string text = null)Sets text to be displayed in entry when it is empty.void setProgressFraction(double fraction)Causes the entry’s progress indicator to “fill in” the given fraction of the bar.void setProgressPulseStep(double fraction)Sets the fraction of total entry width to move the progress bouncing block for each pulse.void setTabs(pango.tab_array.TabArray tabs = null)Sets a [pango.tab_array.TabArray].void setVisibility(bool visible)Sets whether the contents of the entry are visible or not.void unsetInvisibleChar()Unsets the invisible char, so that the default invisible char is used again. See [gtk.entry.Entry.setInvisibleChar].gulong connectActivate(T)(T callback, Flag!"After" after = No.After) if (isCallable!T
&& is(ReturnType!T == void)
&& (Parameters!T.length < 1 || (ParameterStorageClassTuple!T[0] == ParameterStorageClass.none && is(Parameters!T[0] : gtk.entry.Entry)))
&& Parameters!T.length < 2)Connect to `Activate` signal.gulong connectIconPress(T)(T callback, Flag!"After" after = No.After) if (isCallable!T
&& is(ReturnType!T == void)
&& (Parameters!T.length < 1 || (ParameterStorageClassTuple!T[0] == ParameterStorageClass.none && is(Parameters!T[0] == gtk.types.EntryIconPosition)))
&& (Parameters!T.length < 2 || (ParameterStorageClassTuple!T[1] == ParameterStorageClass.none && is(Parameters!T[1] : gtk.entry.Entry)))
&& Parameters!T.length < 3)Connect to `IconPress` signal.gulong connectIconRelease(T)(T callback, Flag!"After" after = No.After) if (isCallable!T
&& is(ReturnType!T == void)
&& (Parameters!T.length < 1 || (ParameterStorageClassTuple!T[0] == ParameterStorageClass.none && is(Parameters!T[0] == gtk.types.EntryIconPosition)))
&& (Parameters!T.length < 2 || (ParameterStorageClassTuple!T[1] == ParameterStorageClass.none && is(Parameters!T[1] : gtk.entry.Entry)))
&& Parameters!T.length < 3)Connect to `IconRelease` signal.T activatesDefault(bool propval)Set `activatesDefault` property. Params: propval = Whether to activate the default widget when Enter is pressed. Returns: Builder instance for fluent chainingT attributes(pango.attr_list.AttrList propval)Set `attributes` property. Params: propval = A list of Pango attributes to apply to the text of the entry.T buffer(gtk.entry_buffer.EntryBuffer propval)Set `buffer` property. Params: propval = The buffer object which actually stores the text. Returns: Builder instance for fluent chainingT completion(gtk.entry_completion.EntryCompletion propval)Set `completion` property. Params: propval = The auxiliary completion object to use with the entry. Returns: Builder instance for fluent chainingT enableEmojiCompletion(bool propval)Set `enableEmojiCompletion` property. Params: propval = Whether to suggest Emoji replacements for :-delimited names like `:heart:`. Returns: Builder instance for fluent chainingT extraMenu(gio.menu_model.MenuModel propval)Set `extraMenu` property. Params: propval = A menu model whose contents will be appended to the context menu. Returns: Builder instance for fluent chainingT hasFrame(bool propval)Set `hasFrame` property. Params: propval = Whether the entry should draw a frame. Returns: Builder instance for fluent chainingT imModule(string propval)Set `imModule` property. Params: propval = Which IM (input method) module should be used for this entry.T inputHints(gtk.types.InputHints propval)Set `inputHints` property. Params: propval = Additional hints that allow input methods to fine-tune their behavior.T inputPurpose(gtk.types.InputPurpose propval)Set `inputPurpose` property. Params: propval = The purpose of this text field.T invisibleChar(uint propval)Set `invisibleChar` property. Params: propval = The character to use when masking entry contents (“password mode”). Returns: Builder instance for fluent chainingT invisibleCharSet(bool propval)Set `invisibleCharSet` property. Params: propval = Whether the invisible char has been set for the [gtk.entry.Entry]. Returns: Builder instance for fluent chainingT maxLength(int propval)Set `maxLength` property. Params: propval = Maximum number of characters for this entry. Returns: Builder instance for fluent chainingT overwriteMode(bool propval)Set `overwriteMode` property. Params: propval = If text is overwritten when typing in the [gtk.entry.Entry]. Returns: Builder instance for fluent chainingT placeholderText(string propval)Set `placeholderText` property. Params: propval = The text that will be displayed in the [gtk.entry.Entry] when it is empty and unfocused. Returns: Builder instance for fluent chainingT primaryIconActivatable(bool propval)Set `primaryIconActivatable` property. Params: propval = Whether the primary icon is activatable.T primaryIconGicon(gio.icon.Icon propval)Set `primaryIconGicon` property. Params: propval = The [gio.icon.Icon] to use for the primary icon for the entry. Returns: Builder instance for fluent chainingT primaryIconName(string propval)Set `primaryIconName` property. Params: propval = The icon name to use for the primary icon for the entry. Returns: Builder instance for fluent chainingT primaryIconPaintable(gdk.paintable.Paintable propval)Set `primaryIconPaintable` property. Params: propval = A [gdk.paintable.Paintable] to use as the primary icon for the entry. Returns: Builder instance for fluent chainingT primaryIconSensitive(bool propval)Set `primaryIconSensitive` property. Params: propval = Whether the primary icon is sensitive.T primaryIconTooltipMarkup(string propval)Set `primaryIconTooltipMarkup` property. Params: propval = The contents of the tooltip on the primary icon, with markup.T primaryIconTooltipText(string propval)Set `primaryIconTooltipText` property. Params: propval = The contents of the tooltip on the primary icon.T progressFraction(double propval)Set `progressFraction` property. Params: propval = The current fraction of the task that's been completed. Returns: Builder instance for fluent chainingT progressPulseStep(double propval)Set `progressPulseStep` property. Params: propval = The fraction of total entry width to move the progress bouncing block for each pulse.T secondaryIconActivatable(bool propval)Set `secondaryIconActivatable` property. Params: propval = Whether the secondary icon is activatable.T secondaryIconGicon(gio.icon.Icon propval)Set `secondaryIconGicon` property. Params: propval = The [gio.icon.Icon] to use for the secondary icon for the entry. Returns: Builder instance for fluent chainingT secondaryIconName(string propval)Set `secondaryIconName` property. Params: propval = The icon name to use for the secondary icon for the entry. Returns: Builder instance for fluent chainingT secondaryIconPaintable(gdk.paintable.Paintable propval)Set `secondaryIconPaintable` property. Params: propval = A [gdk.paintable.Paintable] to use as the secondary icon for the entry. Returns: Builder instance for fluent chainingT secondaryIconSensitive(bool propval)Set `secondaryIconSensitive` property. Params: propval = Whether the secondary icon is sensitive.T secondaryIconTooltipMarkup(string propval)Set `secondaryIconTooltipMarkup` property. Params: propval = The contents of the tooltip on the secondary icon, with markup.T secondaryIconTooltipText(string propval)Set `secondaryIconTooltipText` property. Params: propval = The contents of the tooltip on the secondary icon.T showEmojiIcon(bool propval)T tabs(pango.tab_array.TabArray propval)T truncateMultiline(bool propval)Set `truncateMultiline` property. Params: propval = When true, pasted multi-line text is truncated to the first line. Returns: Builder instance for fluent chainingT visibility(bool propval)Set `visibility` property. Params: propval = Whether the entry should show the “invisible char” instead of the actual text (“password mode”). Returns: Builder instance for fluent chaining