QLabel¶
Synopsis¶
Functions¶
def
alignment
()def
buddy
()def
hasScaledContents
()def
hasSelectedText
()def
indent
()def
margin
()def
movie
()def
openExternalLinks
()def
picture
()def
pixmap
()def
selectedText
()def
selectionStart
()def
setAlignment
(arg__1)def
setBuddy
(arg__1)def
setIndent
(arg__1)def
setMargin
(arg__1)def
setOpenExternalLinks
(open)def
setScaledContents
(arg__1)def
setSelection
(arg__1, arg__2)def
setTextFormat
(arg__1)def
setTextInteractionFlags
(flags)def
setWordWrap
(on)def
text
()def
textFormat
()def
textInteractionFlags
()def
wordWrap
()
Slots¶
Signals¶
def
linkActivated
(link)def
linkHovered
(link)
Detailed Description¶
QLabel
is used for displaying text or an image. No user interaction functionality is provided. The visual appearance of the label can be configured in various ways, and it can be used for specifying a focus mnemonic key for another widget.A
QLabel
can contain any of the following content types:
Content
Setting
Plain text
Pass a
QString
tosetText()
.Rich text
Pass a
QString
that contains rich text tosetText()
.A pixmap
Pass a
QPixmap
tosetPixmap()
.A movie
Pass a
QMovie
tosetMovie()
.A number
Pass an int or a double to
setNum()
, which converts the number to plain text.Nothing
The same as an empty plain text. This is the default. Set by
clear()
.Warning
When passing a
QString
to the constructor or callingsetText()
, make sure to sanitize your input, asQLabel
tries to guess whether it displays the text as plain text or as rich text, a subset of HTML 4 markup. You may want to callsetTextFormat()
explicitly, e.g. in case you expect the text to be in plain format but cannot control the text source (for instance when displaying data loaded from the Web).When the content is changed using any of these functions, any previous content is cleared.
By default, labels display left-aligned, vertically-centered text and images, where any tabs in the text to be displayed are
automatically expanded
. However, the look of aQLabel
can be adjusted and fine-tuned in several ways.The positioning of the content within the
QLabel
widget area can be tuned withsetAlignment()
andsetIndent()
. Text content can also wrap lines along word boundaries withsetWordWrap()
. For example, this code sets up a sunken panel with a two-line text in the bottom right corner (both lines being flush with the right side of the label):label = QLabel(self) label.setFrameStyle(QFrame.Panel | QFrame.Sunken) label.setText("first line\nsecond line") label.setAlignment(Qt.AlignBottom | Qt.AlignRight)The properties and functions
QLabel
inherits fromQFrame
can also be used to specify the widget frame to be used for any given label.A
QLabel
is often used as a label for an interactive widget. For this useQLabel
provides a useful mechanism for adding an mnemonic (seeQKeySequence
) that will set the keyboard focus to the other widget (called theQLabel
‘s “buddy”). For example:phoneEdit = QLineEdit(self) phoneLabel = QLabel("&Phone:", self) phoneLabel.setBuddy(phoneEdit)In this example, keyboard focus is transferred to the label’s buddy (the
QLineEdit
) when the user presses Alt+P. If the buddy was a button (inheriting fromQAbstractButton
), triggering the mnemonic would emulate a button click.
-
class
QLabel
([parent=None[, f=Qt.WindowFlags()]])¶ QLabel(text[, parent=None[, f=Qt.WindowFlags()]])
- param f
WindowFlags
- param parent
- param text
unicode
Constructs an empty label.
The
parent
and widget flagf
, arguments are passed to theQFrame
constructor.See also
Constructs a label that displays the text,
text
.The
parent
and widget flagf
, arguments are passed to theQFrame
constructor.
-
PySide2.QtWidgets.QLabel.
alignment
()¶ - Return type
Alignment
See also
-
PySide2.QtWidgets.QLabel.
buddy
()¶ - Return type
Returns this label’s buddy, or nullptr if no buddy is currently set.
See also
-
PySide2.QtWidgets.QLabel.
clear
()¶ Clears any label contents.
-
PySide2.QtWidgets.QLabel.
hasScaledContents
()¶ - Return type
bool
-
PySide2.QtWidgets.QLabel.
hasSelectedText
()¶ - Return type
bool
-
PySide2.QtWidgets.QLabel.
indent
()¶ - Return type
int
See also
-
PySide2.QtWidgets.QLabel.
linkActivated
(link)¶ - Parameters
link – unicode
-
PySide2.QtWidgets.QLabel.
linkHovered
(link)¶ - Parameters
link – unicode
-
PySide2.QtWidgets.QLabel.
margin
()¶ - Return type
int
See also
-
PySide2.QtWidgets.QLabel.
movie
()¶ - Return type
QMovie
Returns a pointer to the label’s movie, or nullptr if no movie has been set.
See also
-
PySide2.QtWidgets.QLabel.
openExternalLinks
()¶ - Return type
bool
See also
-
PySide2.QtWidgets.QLabel.
picture
()¶ - Return type
QPicture
Returns the label’s picture or nullptr if the label doesn’t have a picture.
See also
-
PySide2.QtWidgets.QLabel.
pixmap
()¶ - Return type
QPixmap
See also
-
PySide2.QtWidgets.QLabel.
selectedText
()¶ - Return type
unicode
-
PySide2.QtWidgets.QLabel.
selectionStart
()¶ - Return type
int
returns the index of the first selected character in the label or -1 if no text is selected.
Note
The
textInteractionFlags
set on the label need to include either TextSelectableByMouse or TextSelectableByKeyboard.See also
-
PySide2.QtWidgets.QLabel.
setAlignment
(arg__1)¶ - Parameters
arg__1 –
Alignment
See also
-
PySide2.QtWidgets.QLabel.
setBuddy
(arg__1)¶ - Parameters
arg__1 –
QWidget
Sets this label’s buddy to
buddy
.When the user presses the shortcut key indicated by this label, the keyboard focus is transferred to the label’s buddy widget.
The buddy mechanism is only available for QLabels that contain text in which one character is prefixed with an ampersand, ‘&’. This character is set as the shortcut key. See the
mnemonic()
documentation for details (to display an actual ampersand, use ‘&&’).In a dialog, you might create two data entry widgets and a label for each, and set up the geometry layout so each label is just to the left of its data entry widget (its “buddy”), for example:
nameEd = QLineEdit(self) nameLb = QLabel("&Name:", self) nameLb.setBuddy(nameEd) phoneEd = QLineEdit(self) phoneLb = QLabel("&Phone:", self) phoneLb.setBuddy(phoneEd) # (layout setup not shown)
With the code above, the focus jumps to the Name field when the user presses Alt+N, and to the Phone field when the user presses Alt+P.
To unset a previously set buddy, call this function with
buddy
set to nullptr.See also
-
PySide2.QtWidgets.QLabel.
setMovie
(movie)¶ - Parameters
movie –
QMovie
Sets the label contents to
movie
. Any previous content is cleared. The label does NOT take ownership of the movie.The buddy shortcut, if any, is disabled.
See also
-
PySide2.QtWidgets.QLabel.
setNum
(arg__1)¶ - Parameters
arg__1 –
double
This is an overloaded function.
Sets the label contents to plain text containing the textual representation of double
num
. Any previous content is cleared. Does nothing if the double’s string representation is the same as the current contents of the label.The buddy shortcut, if any, is disabled.
See also
setText()
setNum()
setBuddy()
-
PySide2.QtWidgets.QLabel.
setNum
(arg__1) - Parameters
arg__1 –
int
Sets the label contents to plain text containing the textual representation of integer
num
. Any previous content is cleared. Does nothing if the integer’s string representation is the same as the current contents of the label.The buddy shortcut, if any, is disabled.
See also
setText()
setNum()
setBuddy()
-
PySide2.QtWidgets.QLabel.
setOpenExternalLinks
(open)¶ - Parameters
open –
bool
See also
-
PySide2.QtWidgets.QLabel.
setPicture
(arg__1)¶ - Parameters
arg__1 –
QPicture
Sets the label contents to
picture
. Any previous content is cleared.The buddy shortcut, if any, is disabled.
See also
-
PySide2.QtWidgets.QLabel.
setScaledContents
(arg__1)¶ - Parameters
arg__1 –
bool
See also
-
PySide2.QtWidgets.QLabel.
setSelection
(arg__1, arg__2)¶ - Parameters
arg__1 –
int
arg__2 –
int
Selects text from position
start
and forlength
characters.Note
The
textInteractionFlags
set on the label need to include either TextSelectableByMouse or TextSelectableByKeyboard.See also
-
PySide2.QtWidgets.QLabel.
setTextFormat
(arg__1)¶ - Parameters
arg__1 –
TextFormat
See also
-
PySide2.QtWidgets.QLabel.
setTextInteractionFlags
(flags)¶ - Parameters
flags –
TextInteractionFlags
See also
-
PySide2.QtWidgets.QLabel.
setWordWrap
(on)¶ - Parameters
on –
bool
See also
-
PySide2.QtWidgets.QLabel.
textFormat
()¶ - Return type
TextFormat
See also
-
PySide2.QtWidgets.QLabel.
textInteractionFlags
()¶ - Return type
TextInteractionFlags
See also
-
PySide2.QtWidgets.QLabel.
wordWrap
()¶ - Return type
bool
See also
© 2018 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.