QProgressBar#
The QProgressBar
widget provides a horizontal or vertical progress bar. More…
Synopsis#
Properties#
alignment
- The alignment of the progress barformat
- The string used to generate the current textinvertedAppearance
- Whether or not a progress bar shows its progress invertedmaximum
- The progress bar’s maximum valueminimum
- The progress bar’s minimum valueorientation
- The orientation of the progress bartext
- The descriptive text shown with the progress bartextDirection
- The reading direction of the text for vertical progress barstextVisible
- Whether the current completed percentage should be displayedvalue
- The progress bar’s current value
Functions#
def
alignment
()def
format
()def
invertedAppearance
()def
isTextVisible
()def
maximum
()def
minimum
()def
orientation
()def
resetFormat
()def
setAlignment
(alignment)def
setFormat
(format)def
setInvertedAppearance
(invert)def
setTextDirection
(textDirection)def
setTextVisible
(visible)def
textDirection
()def
value
()
Virtual functions#
def
initStyleOption
(option)def
text
()
Slots#
def
reset
()def
setMaximum
(maximum)def
setMinimum
(minimum)def
setOrientation
(arg__1)def
setRange
(minimum, maximum)def
setValue
(value)
Signals#
def
valueChanged
(value)
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#
A progress bar is used to give the user an indication of the progress of an operation and to reassure them that the application is still running.
The progress bar uses the concept of steps. You set it up by specifying the minimum and maximum possible step values, and it will display the percentage of steps that have been completed when you later give it the current step value. The percentage is calculated by dividing the progress ( value()
- minimum()
) divided by maximum()
- minimum()
.
You can specify the minimum and maximum number of steps with setMinimum()
and setMaximum
. The current number of steps is set with setValue()
. The progress bar can be rewound to the beginning with reset()
.
If minimum and maximum both are set to 0, the bar shows a busy indicator instead of a percentage of steps. This is useful, for example, when using QNetworkAccessManager to download items when they are unable to determine the size of the item being downloaded.
See also
- class PySide6.QtWidgets.QProgressBar([parent=None])#
- Parameters:
parent –
PySide6.QtWidgets.QWidget
Constructs a progress bar with the given parent
.
By default, the minimum step value is set to 0, and the maximum to 100.
See also
Note
Properties can be used directly when from __feature__ import true_property
is used or via accessor functions otherwise.
- property PᅟySide6.QtWidgets.QProgressBar.alignment: Combination of Qt.AlignmentFlag#
This property holds the alignment of the progress bar.
- Access functions:
alignment
()setAlignment
(alignment)
- property PᅟySide6.QtWidgets.QProgressBar.format: str#
This property holds the string used to generate the current text.
%p - is replaced by the percentage completed. %v - is replaced by the current value. %m - is replaced by the total number of steps.
The default value is “%p%”.
See also
- Access functions:
format
()setFormat
(format)resetFormat
()
- property PᅟySide6.QtWidgets.QProgressBar.invertedAppearance: bool#
This property holds whether or not a progress bar shows its progress inverted.
If this property is true
, the progress bar grows in the other direction (e.g. from right to left). By default, the progress bar is not inverted.
See also
- Access functions:
setInvertedAppearance
(invert)
- property PᅟySide6.QtWidgets.QProgressBar.maximum: int#
This property holds the progress bar’s maximum value.
When setting this property, the minimum
is adjusted if necessary to ensure that the range remains valid. If the current value falls outside the new range, the progress bar is reset with reset()
.
- Access functions:
maximum
()setMaximum
(maximum)
- property PᅟySide6.QtWidgets.QProgressBar.minimum: int#
This property holds the progress bar’s minimum value.
When setting this property, the maximum
is adjusted if necessary to ensure that the range remains valid. If the current value falls outside the new range, the progress bar is reset with reset()
.
- Access functions:
minimum
()setMinimum
(minimum)
- property PᅟySide6.QtWidgets.QProgressBar.orientation: Orientation#
This property holds the orientation of the progress bar.
The orientation must be Qt::Horizontal (the default) or Qt::Vertical.
See also
- Access functions:
orientation
()setOrientation
(arg__1)
- property PᅟySide6.QtWidgets.QProgressBar.text: str#
This property holds the descriptive text shown with the progress bar.
The text returned is the same as the text displayed in the center (or in some styles, to the left) of the progress bar.
The progress shown in the text may be smaller than the minimum value, indicating that the progress bar is in the “reset” state before any progress is set.
In the default implementation, the text either contains a percentage value that indicates the progress so far, or it is blank because the progress bar is in the reset state.
- Access functions:
text
()
- property PᅟySide6.QtWidgets.QProgressBar.textDirection: Direction#
This property holds the reading direction of the text
for vertical progress bars.
This property has no impact on horizontal progress bars. By default, the reading direction is TopToBottom
.
See also
orientation
textVisible
- Access functions:
setTextDirection
(textDirection)
- property PᅟySide6.QtWidgets.QProgressBar.textVisible: bool#
This property holds whether the current completed percentage should be displayed.
This property may be ignored by the style (e.g., QMacStyle never draws the text).
See also
- Access functions:
setTextVisible
(visible)
- property PᅟySide6.QtWidgets.QProgressBar.value: int#
This property holds the progress bar’s current value.
Attempting to change the current value to one outside the minimum-maximum range has no effect on the current value.
- Access functions:
value
()setValue
(value)Signal
valueChanged
(value)
- PySide6.QtWidgets.QProgressBar.Direction#
Specifies the reading direction of the text
for vertical progress bars.
Constant
Description
QProgressBar.TopToBottom
The text is rotated 90 degrees clockwise.
QProgressBar.BottomToTop
The text is rotated 90 degrees counter-clockwise.
Note that whether or not the text is drawn is dependent on the style. Currently CleanLooks and Plastique draw the text. Mac, Windows and WindowsVista style do not.
See also
- PySide6.QtWidgets.QProgressBar.alignment()#
- Return type:
Combination of
Qt.AlignmentFlag
See also
Getter of property alignment
.
- PySide6.QtWidgets.QProgressBar.format()#
- Return type:
str
See also
Getter of property format
.
- PySide6.QtWidgets.QProgressBar.initStyleOption(option)#
- Parameters:
Initialize option
with the values from this QProgressBar
. This method is useful for subclasses when they need a QStyleOptionProgressBar
, but don’t want to fill in all the information themselves.
See also
- PySide6.QtWidgets.QProgressBar.invertedAppearance()#
- Return type:
bool
See also
Getter of property invertedAppearance
.
- PySide6.QtWidgets.QProgressBar.isTextVisible()#
- Return type:
bool
Getter of property textVisible
.
- PySide6.QtWidgets.QProgressBar.maximum()#
- Return type:
int
See also
Getter of property maximum
.
- PySide6.QtWidgets.QProgressBar.minimum()#
- Return type:
int
See also
Getter of property minimum
.
- PySide6.QtWidgets.QProgressBar.orientation()#
- Return type:
See also
Getter of property orientation
.
- PySide6.QtWidgets.QProgressBar.reset()#
Reset the progress bar. The progress bar “rewinds” and shows no progress.
- PySide6.QtWidgets.QProgressBar.resetFormat()#
Reset function of property format
.
- PySide6.QtWidgets.QProgressBar.setAlignment(alignment)#
- Parameters:
alignment – Combination of
Qt.AlignmentFlag
See also
Setter of property alignment
.
Setter of property format
.
- PySide6.QtWidgets.QProgressBar.setInvertedAppearance(invert)#
- Parameters:
invert – bool
See also
Setter of property invertedAppearance
.
Setter of property maximum
.
Setter of property minimum
.
- PySide6.QtWidgets.QProgressBar.setOrientation(arg__1)#
- Parameters:
arg__1 –
Orientation
See also
Setter of property orientation
.
- PySide6.QtWidgets.QProgressBar.setRange(minimum, maximum)#
- Parameters:
minimum – int
maximum – int
Sets the progress bar’s minimum and maximum values to minimum
and maximum
respectively.
If maximum
is smaller than minimum
, minimum
becomes the only legal value.
If the current value falls outside the new range, the progress bar is reset with reset()
.
The QProgressBar
can be set to undetermined state by using setRange(0, 0).
- PySide6.QtWidgets.QProgressBar.setTextDirection(textDirection)#
- Parameters:
textDirection –
Direction
See also
Setter of property textDirection
.
- PySide6.QtWidgets.QProgressBar.setTextVisible(visible)#
- Parameters:
visible – bool
See also
Setter of property textVisible
.
Setter of property value
.
- PySide6.QtWidgets.QProgressBar.text()#
- Return type:
str
Getter of property text
.
- PySide6.QtWidgets.QProgressBar.textDirection()#
- Return type:
See also
Getter of property textDirection
.
- PySide6.QtWidgets.QProgressBar.value()#
- Return type:
int
See also
Getter of property value
.
- PySide6.QtWidgets.QProgressBar.valueChanged(value)#
- Parameters:
value – int
This signal is emitted when the value shown in the progress bar changes. value
is the new value shown by the progress bar.
Notification signal of property value
.