class QLineEdit#

The QLineEdit widget is a one-line text editor. More

Inheritance diagram of PySide6.QtWidgets.QLineEdit

Synopsis#

Properties#

Methods#

Virtual methods#

Slots#

Signals#

Note

This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE

Detailed Description#

../../_images/windows-lineedit.png

A line edit allows users to enter and edit a single line of plain text with useful editing functions, including undo and redo, cut and paste, and drag and drop.

By changing the echoMode() of a line edit, it can also be used as a write-only field for inputs such as passwords.

QTextEdit is a related class that allows multi-line, rich text editing.

Constraining Text#

Use maxLength to define the maximum permitted length of a text. You can use a inputMask and setValidator() to further constrain the text content.

Editing Text#

You can change the text with setText() or insert() . Use text() to retrieve the text and displayText() to retrieve the displayed text (which may be different, see EchoMode ). You can select the text with setSelection() or selectAll() , and you can cut() , copy() , and paste() the selection. To align the text, use setAlignment() .

When the text changes, the textChanged() signal is emitted. When the text changes in some other way than by calling setText() , the textEdited() signal is emitted. When the cursor is moved, the cursorPositionChanged() signal is emitted. And when the Return or Enter key is selected, the returnPressed() signal is emitted.

When text editing is finished, either because the line edit lost focus or Return/Enter was selected, the editingFinished() signal is emitted.

If the line edit focus is lost without any text changes, the editingFinished() signal won’t be emitted.

If there is a validator set on the line edit, the returnPressed() / editingFinished() signals will only be emitted if the validator returns QValidator::Acceptable.

For more information on the many ways that QLineEdit can be used, see Line Edits Example , which also provides a selection of line edit examples that show the effects of various properties and validators on the input and output supplied by the user.

Setting a Frame#

By default, QLineEdits have a frame as specified in the platform style guides. You can turn the frame off by calling setFrame (false).

Default Key Bindings#

The table below describes the default key bindings.

Note

The line edit also provides a context menu (usually invoked by a right-click) that presents some of the editing options listed below.

Keystroke

Action

Left Arrow

Moves the cursor one character to the left.

Shift+Left Arrow

Moves and selects text one character to the left.

Right Arrow

Moves the cursor one character to the right.

Shift+Right Arrow

Moves and selects text one character to the right.

Home

Moves the cursor to the beginning of the line.

End

Moves the cursor to the end of the line.

Backspace

Deletes the character to the left of the cursor.

Ctrl+Backspace

Deletes the word to the left of the cursor.

Delete

Deletes the character to the right of the cursor.

Ctrl+Delete

Deletes the word to the right of the cursor.

Ctrl+A

Selects all.

Ctrl+C

Copies the selected text to the clipboard.

Ctrl+Insert

Copies the selected text to the clipboard.

Ctrl+K

Deletes to the end of the line.

Ctrl+V

Pastes the clipboard text into line edit.

Shift+Insert

Pastes the clipboard text into line edit.

Ctrl+X

Deletes the selected text and copies it to the clipboard.

Shift+Delete

Deletes the selected text and copies it to the clipboard.

Ctrl+Z

Undoes the last operation.

Ctrl+Y

Redoes the last undone operation.

Any other keystroke that represents a valid character, will cause the character to be inserted into the line edit.

class ActionPosition#

This enum type describes how a line edit should display the action widgets to be added.

Constant

Description

QLineEdit.LeadingPosition

The widget is displayed to the left of the text when using layout direction Qt::LeftToRight or to the right when using Qt::RightToLeft, respectively.

QLineEdit.TrailingPosition

The widget is displayed to the right of the text when using layout direction Qt::LeftToRight or to the left when using Qt::RightToLeft, respectively.

class EchoMode#

This enum type describes how a line edit should display its contents.

Constant

Description

QLineEdit.Normal

Display characters as they are entered. This is the default.

QLineEdit.NoEcho

Do not display anything. This may be appropriate for passwords where even the length of the password should be kept secret.

QLineEdit.Password

Display platform-dependent password mask characters instead of the characters actually entered.

QLineEdit.PasswordEchoOnEdit

Display characters only while they are entered. Otherwise, display characters as with Password.

Note

Properties can be used directly when from __feature__ import true_property is used or via accessor functions otherwise.

property acceptableInputᅟ: bool#

This property holds Whether the input satisfies the inputMask and the validator..

By default, this property is true.

Access functions:
property alignmentᅟ: Combination of Qt.AlignmentFlag#

This property holds The alignment of the line edit..

Both horizontal and vertical alignment is allowed here, Qt::AlignJustify will map to Qt::AlignLeft.

By default, this property contains a combination of Qt::AlignLeft and Qt::AlignVCenter.

See also

Alignment

Access functions:
property clearButtonEnabledᅟ: bool#

This property holds Whether the line edit displays a clear button when it is not empty..

If enabled, the line edit displays a trailing clear button when it contains some text. Otherwise, the line edit does not show a clear button (the default).

Access functions:
property cursorMoveStyleᅟ: Qt.CursorMoveStyle#

This property holds The movement style of the cursor in this line edit..

When this property is set to Qt::VisualMoveStyle, the line edit will use a visual movement style. Using the left arrow key will always cause the cursor to move left, regardless of the text’s writing direction. The same behavior applies to the right arrow key.

When the property is set to Qt::LogicalMoveStyle (the default), within a left-to-right (LTR) text block, using the left arrow key will increase the cursor position, whereas using the right arrow key will decrease the cursor position. If the text block is right-to-left (RTL), the opposite behavior applies.

Access functions:
property cursorPositionᅟ: int#

This property holds The current cursor position for this line edit..

Setting the cursor position causes a repaint when appropriate.

By default, this property contains a value of 0.

Access functions:
property displayTextᅟ: str#

This property holds The displayed text..

If echoMode is Normal , this returns the same as text() . If EchoMode is Password or PasswordEchoOnEdit , it returns a string of platform-dependent password mask characters (e.g. “******”). If EchoMode is NoEcho , it returns an empty string.

By default, this property contains an empty string.

Access functions:
property dragEnabledᅟ: bool#

This property holds Whether the line edit starts a drag if the user presses and moves the mouse on some selected text..

Dragging is disabled by default.

Access functions:
property echoModeᅟ: QLineEdit.EchoMode#

This property holds The line edit’s echo mode..

The echo mode determines how the text entered in the line edit is displayed (or echoed) to the user.

The most common setting is Normal , in which the text entered by the user is displayed verbatim. QLineEdit also supports modes that allow the entered text to be suppressed or obscured: these include NoEcho , Password and PasswordEchoOnEdit .

The widget’s display and the ability to copy or drag the text is affected by this setting.

By default, this property is set to Normal .

Access functions:
property frameᅟ: bool#

This property holds Whether the line edit draws itself with a frame..

If enabled (the default), the line edit draws itself inside a frame. Otherwise, the line edit draws itself without any frame.

Access functions:
property hasSelectedTextᅟ: bool#

This property holds Whether there is any text selected..

hasSelectedText() returns true if some or all of the text has been selected by the user. Otherwise, it returns false.

By default, this property is false.

See also

selectedText()

Access functions:
property inputMaskᅟ: str#

This property holds The validation input mask..

Sets the QLineEdit ‘s validation mask. Validators can be used instead of, or in conjunction with masks; see setValidator() . The default is an empty string, which means that no input mask is used.

To unset the mask and return to normal QLineEdit operation, pass an empty string.

The input mask is an input template string. It can contain the following elements:

Mask Characters

Defines the Category of input characters that are considered valid in this position.

Meta Characters

Various special meanings (see details below).

Separators

All other characters are regarded as immutable separators.

The following table shows the mask and meta characters that can be used in an input mask.

Mask Character

Meaning

A

Character of the Letter category required, such as A-Z, a-z.

a

Character of the Letter category permitted but not required.

N

Character of the Letter or Number category required, such as A-Z, a-z, 0-9.

n

Character of the Letter or Number category permitted but not required.

X

Any non-blank character required.

x

Any non-blank character permitted but not required.

9

Character of the Number category required, such as 0-9.

0

Character of the Number category permitted but not required.

D

Character of the Number category and larger than zero required, such as 1-9.

d

Character of the Number category and larger than zero permitted but not required, such as 1-9.

#

Character of the Number category, or plus/minus sign permitted but not required.

H

Hexadecimal character required. A-F, a-f, 0-9.

h

Hexadecimal character permitted but not required.

B

Binary character required. 0-1.

b

Binary character permitted but not required.

Meta Character

Meaning

>

All following alphabetic characters are uppercased.

<

All following alphabetic characters are lowercased.

!

Switch off case conversion.

;c

Terminates the input mask and sets the blank character to c.

[ ] { }

Reserved.

\

Use \ to escape the special characters listed above to use them as separators.

When created or cleared, the line edit will be filled with a copy of the input mask string where the meta characters have been removed, and the mask characters have been replaced with the blank character (by default, a space).

When an input mask is set, the text() method returns a modified copy of the line edit content where all the blank characters have been removed. The unmodified content can be read using displayText() .

The hasAcceptableInput() method returns false if the current content of the line edit does not fulfill the requirements of the input mask.

Examples:

Mask

Notes

000.000.000.000;_

IP address; blanks are _.

HH:HH:HH:HH:HH:HH;_

MAC address

0000-00-00

ISO Date; blanks are space

>AAAAA-AAAAA-AAAAA-AAAAA-AAAAA;#

License number; blanks are # and all (alphabetic) characters are converted to uppercase.

To get range control (e.g., for an IP address) use masks together with validators .

See also

maxLength digitValue()

Access functions:
property maxLengthᅟ: int#

This property holds The maximum permitted length of the text..

If the text is too long, it is truncated at the limit.

If truncation occurs, any selected text will be unselected, the cursor position is set to 0, and the first part of the string is shown.

If the line edit has an input mask, the mask defines the maximum string length.

By default, this property contains a value of 32767.

See also

inputMask

Access functions:
property modifiedᅟ: bool#

This property holds Whether the line edit’s contents has been modified by the user..

The modified flag is never read by QLineEdit ; it has a default value of false and is changed to true whenever the user changes the line edit’s contents.

This is useful for things that need to provide a default value but do not start out knowing what the default should be (for example, it depends on other fields on the form). Start the line edit without the best default, and when the default is known, if modified() returns false (the user hasn’t entered any text), insert the default value.

Calling setText() resets the modified flag to false.

Access functions:
property placeholderTextᅟ: str#

This property holds The line edit’s placeholder text..

Setting this property makes the line edit display a grayed-out placeholder text as long as the line edit is empty.

Normally, an empty line edit shows the placeholder text even when it has focus. However, if the content is horizontally centered, the placeholder text is not displayed under the cursor when the line edit has focus.

By default, this property contains an empty string.

See also

text()

Access functions:
property readOnlyᅟ: bool#

This property holds Whether the line edit is read-only..

In read-only mode, the user can still copy the text to the clipboard, or drag and drop the text (if echoMode() is Normal ), but cannot edit it.

QLineEdit does not show a cursor in read-only mode.

By default, this property is false.

See also

setEnabled()

Access functions:
property redoAvailableᅟ: bool#

This property holds Whether redo is available..

Redo becomes available once the user has performed one or more undo operations on the text in the line edit.

By default, this property is false.

Access functions:
property selectedTextᅟ: str#

This property holds The selected text..

If there is no selected text, this property’s value is an empty string.

By default, this property contains an empty string.

Access functions:
property textᅟ: str#

This property holds The line edit’s text..

Setting this property clears the selection, clears the undo/redo history, moves the cursor to the end of the line, and resets the modified property to false. The text is not validated when inserted with setText().

The text is truncated to maxLength() length.

By default, this property contains an empty string.

See also

insert() clear()

Access functions:
property undoAvailableᅟ: bool#

This property holds Whether undo is available..

Undo becomes available once the user has modified the text in the line edit.

By default, this property is false.

Access functions:
__init__(arg__1[, parent=None])#
Parameters:
  • arg__1 – str

  • parentQWidget

Constructs a line edit containing the text contents as a child of parent.

The cursor position is set to the end of the line and the maximum text length to 32767 characters.

__init__([parent=None])
Parameters:

parentQWidget

Constructs a line edit with no text.

The maximum text length is set to 32767 characters.

The parent argument is sent to the QWidget constructor.

addAction(icon, position)#
Parameters:
Return type:

QAction

This is an overloaded function.

Creates a new action with the given icon at the position.

addAction(action, position)
Parameters:

Adds the action to the list of actions at the position.

alignment()#
Return type:

Combination of AlignmentFlag

See also

setAlignment()

Getter of property alignmentᅟ .

backspace()#

If no text is selected, deletes the character to the left of the text cursor, and moves the cursor one position to the left. If any text is selected, the cursor is moved to the beginning of the selected text, and the selected text is deleted.

See also

del()

clear()#

Clears the contents of the line edit.

See also

setText() insert()

completer()#
Return type:

QCompleter

Returns the current QCompleter that provides completions.

See also

setCompleter()

copy()#

Copies the selected text to the clipboard, if there is any, and if echoMode() is Normal .

See also

cut() paste()

createStandardContextMenu()#
Return type:

QMenu

Creates the standard context menu, which is shown when the user clicks on the line edit with the right mouse button. It is called from the default contextMenuEvent() handler. The popup menu’s ownership is transferred to the caller.

cursorBackward(mark[, steps=1])#
Parameters:
  • mark – bool

  • steps – int

Moves the cursor back steps characters. If mark is true, each character moved over is added to the selection. If mark is false, the selection is cleared.

See also

cursorForward()

cursorForward(mark[, steps=1])#
Parameters:
  • mark – bool

  • steps – int

Moves the cursor forward steps characters. If mark is true, each character moved over is added to the selection. If mark is false, the selection is cleared.

See also

cursorBackward()

cursorMoveStyle()#
Return type:

CursorMoveStyle

Getter of property cursorMoveStyleᅟ .

cursorPosition()#
Return type:

int

Getter of property cursorPositionᅟ .

cursorPositionAt(pos)#
Parameters:

posQPoint

Return type:

int

Returns the cursor position under the point pos.

cursorPositionChanged(arg__1, arg__2)#
Parameters:
  • arg__1 – int

  • arg__2 – int

This signal is emitted whenever the cursor moves. The previous position is given by oldPos, and the new position by newPos.

cursorRect()#
Return type:

QRect

Returns a rectangle that includes the line edit cursor.

cursorWordBackward(mark)#
Parameters:

mark – bool

Moves the cursor one word backward. If mark is true, the word is also selected.

cursorWordForward(mark)#
Parameters:

mark – bool

Moves the cursor one word forward. If mark is true, the word is also selected.

cut()#

Copies the selected text to the clipboard and deletes it, if there is any, and if echoMode() is Normal .

If the current validator disallows deleting the selected text, cut() will copy without deleting.

del_()#
deselect()#

Deselects any selected text.

displayText()#
Return type:

str

Getter of property displayTextᅟ .

dragEnabled()#
Return type:

bool

See also

setDragEnabled()

Getter of property dragEnabledᅟ .

echoMode()#
Return type:

EchoMode

See also

setEchoMode()

Getter of property echoModeᅟ .

editingFinished()#

This signal is emitted when the Return or Enter key is used, or if the line edit loses focus and its contents have changed since the last time this signal was emitted.

Note

If there is a validator() or inputMask() set on the line edit and enter/return is used, the editingFinished() signal will only be emitted if the input follows the inputMask() and the validator() returns QValidator::Acceptable.

end(mark)#
Parameters:

mark – bool

Moves the text cursor to the end of the line unless it is already there. If mark is true, text is selected towards the last position. Otherwise, any selected text is unselected if the cursor is moved.

See also

home()

hasAcceptableInput()#
Return type:

bool

Getter of property acceptableInputᅟ .

hasFrame()#
Return type:

bool

Getter of property frameᅟ .

hasSelectedText()#
Return type:

bool

Getter of property hasSelectedTextᅟ .

home(mark)#
Parameters:

mark – bool

Moves the text cursor to the beginning of the line unless it is already there. If mark is true, text is selected towards the first position. Otherwise, any selected text is unselected if the cursor is moved.

See also

end()

initStyleOption(option)#
Parameters:

optionQStyleOptionFrame

Initialize option with the values from this QLineEdit . This method is useful for subclasses when they need a QStyleOptionFrame , but don’t want to fill in all the information themselves.

See also

initFrom()

inputMask()#
Return type:

str

See also

setInputMask()

Getter of property inputMaskᅟ .

inputMethodQuery(property, argument)#
Parameters:
Return type:

object

inputRejected()#

This signal is emitted when the user uses a key that is not considered to be valid input. For example, if using a key results in a validator’s validate() call to return Invalid. Another case is when trying to enter more characters beyond the maximum length of the line edit.

Note

This signal will still be emitted when only a part of the text is accepted. For example, if there is a maximum length set and the clipboard text is longer than the maximum length when it is pasted.

insert(arg__1)#
Parameters:

arg__1 – str

Deletes any selected text, inserts newText, and validates the result. If it is valid, it sets the new text as the new contents of the line edit.

See also

setText() clear()

isClearButtonEnabled()#
Return type:

bool

Getter of property clearButtonEnabledᅟ .

isModified()#
Return type:

bool

Getter of property modifiedᅟ .

isReadOnly()#
Return type:

bool

Getter of property readOnlyᅟ .

isRedoAvailable()#
Return type:

bool

Getter of property redoAvailableᅟ .

isUndoAvailable()#
Return type:

bool

Getter of property undoAvailableᅟ .

maxLength()#
Return type:

int

See also

setMaxLength()

Getter of property maxLengthᅟ .

paste()#

Inserts the clipboard’s text at the cursor position, deleting any selected text, providing the line edit is not read-only .

If the end result would be invalid to the current validator , nothing happens.

See also

copy() cut()

placeholderText()#
Return type:

str

Getter of property placeholderTextᅟ .

redo()#

Redoes the last operation if redo is available .

returnPressed()#

This signal is emitted when the Return or Enter key is used.

Note

If there is a validator() or inputMask() set on the line edit, the returnPressed() signal will only be emitted if the input follows the inputMask() and the validator() returns QValidator::Acceptable.

selectAll()#

Selects all the text (highlights it) and moves the cursor to the end.

Note

This is useful when a default value has been inserted because if the user types before clicking on the widget, the selected text will be deleted.

selectedText()#
Return type:

str

Getter of property selectedTextᅟ .

selectionChanged()#

This signal is emitted whenever the selection changes.

selectionEnd()#
Return type:

int

Returns the index of the character directly after the selection in the line edit (or -1 if no text is selected).

selectionLength()#
Return type:

int

Returns the length of the selection.

selectionStart()#
Return type:

int

Returns the index of the first selected character in the line edit (or -1 if no text is selected).

setAlignment(flag)#
Parameters:

flag – Combination of AlignmentFlag

See also

alignment()

Setter of property alignmentᅟ .

setClearButtonEnabled(enable)#
Parameters:

enable – bool

Setter of property clearButtonEnabledᅟ .

setCompleter(completer)#
Parameters:

completerQCompleter

Sets this line edit to provide auto completions from the completer, c. The completion mode is set using setCompletionMode() .

To use a QCompleter with a QValidator or inputMask , you need to ensure that the model provided to QCompleter contains valid entries. You can use the QSortFilterProxyModel to ensure that the QCompleter ‘s model contains only valid entries.

To remove the completer and disable auto-completion, pass a nullptr.

setCursorMoveStyle(style)#
Parameters:

styleCursorMoveStyle

Setter of property cursorMoveStyleᅟ .

setCursorPosition(arg__1)#
Parameters:

arg__1 – int

See also

cursorPosition()

Setter of property cursorPositionᅟ .

setDragEnabled(b)#
Parameters:

b – bool

See also

dragEnabled()

Setter of property dragEnabledᅟ .

setEchoMode(arg__1)#
Parameters:

arg__1EchoMode

See also

echoMode()

Setter of property echoModeᅟ .

setFrame(arg__1)#
Parameters:

arg__1 – bool

See also

hasFrame()

Setter of property frameᅟ .

setInputMask(inputMask)#
Parameters:

inputMask – str

See also

inputMask()

Setter of property inputMaskᅟ .

setMaxLength(arg__1)#
Parameters:

arg__1 – int

See also

maxLength()

Setter of property maxLengthᅟ .

setModified(arg__1)#
Parameters:

arg__1 – bool

See also

isModified()

Setter of property modifiedᅟ .

setPlaceholderText(arg__1)#
Parameters:

arg__1 – str

Setter of property placeholderTextᅟ .

setReadOnly(arg__1)#
Parameters:

arg__1 – bool

See also

isReadOnly()

Setter of property readOnlyᅟ .

setSelection(arg__1, arg__2)#
Parameters:
  • arg__1 – int

  • arg__2 – int

Selects text from position start and for length characters. Negative lengths are allowed.

setText(arg__1)#
Parameters:

arg__1 – str

See also

text()

Setter of property textᅟ .

setTextMargins(margins)#
Parameters:

marginsQMargins

Sets the margins around the text inside the frame.

See also

textMargins()

setTextMargins(left, top, right, bottom)
Parameters:
  • left – int

  • top – int

  • right – int

  • bottom – int

Sets the margins around the text inside the frame to have the sizes left, top, right, and bottom.

See also

textMargins()

setValidator(arg__1)#
Parameters:

arg__1QValidator

Sets the validator for values of line edit to v.

The line edit’s returnPressed() and editingFinished() signals will only be emitted if v validates the line edit’s content as Acceptable. The user may change the content to any Intermediate value during editing, but will be prevented from editing the text to a value that v validates as Invalid.

This allows you to constrain the text that will be stored when editing is done while leaving users with enough freedom to edit the text from one valid state to another.

To remove the current input validator, pass nullptr. The initial setting is to have no input validator (any input is accepted up to maxLength() ).

See also

validator() hasAcceptableInput() QIntValidatorQDoubleValidatorQRegularExpressionValidator

text()#
Return type:

str

See also

setText()

Getter of property textᅟ .

textChanged(arg__1)#
Parameters:

arg__1 – str

This signal is emitted whenever the text changes. The text argument is the new text.

Unlike textEdited() , this signal is also emitted when the text is changed programmatically, for example, by calling setText() .

Notification signal of property textᅟ .

textEdited(arg__1)#
Parameters:

arg__1 – str

This signal is emitted whenever the text is edited. The text argument is the new text.

Unlike textChanged() , this signal is not emitted when the text is changed programmatically, for example, by calling setText() .

textMargins()#
Return type:

QMargins

Returns the widget’s text margins.

See also

setTextMargins()

undo()#

Undoes the last operation if undo is available . Deselects any current selection, and updates the selection start to the current cursor position.

validator()#
Return type:

QValidator

Returns a pointer to the current input validator, or None if no validator has been set.

See also

setValidator()