|
QtPass 1.5.1
Multi-platform GUI for pass, the standard unix password manager.
|
The QProgressIndicator class lets an application display a progress indicator to show that a lengthy task is under way. More...
#include <qprogressindicator.h>
Inheritance diagram for QProgressIndicator:
Collaboration diagram for QProgressIndicator:Public Slots | |
| void | startAnimation () |
| Starts the spin animation. | |
| void | stopAnimation () |
| Stops the spin animation. | |
| void | setAnimationDelay (int delay) |
| Sets the delay between animation steps. | |
| void | setDisplayedWhenStopped (bool state) |
| Sets whether the component hides itself when it is not animating. | |
| void | setColor (const QColor &color) |
| Sets the color of the components to the given color. | |
Public Member Functions | |
| QProgressIndicator (QWidget *parent=0) | |
| QProgressIndicator::QProgressIndicator constructor. | |
| auto | animationDelay () const -> int |
| Returns the delay between animation steps. | |
| auto | isAnimated () const -> bool |
| Returns a Boolean value indicating whether the component is currently animated. | |
| auto | isDisplayedWhenStopped () const -> bool |
| Returns a Boolean value indicating whether the receiver shows itself even when it is not animating. | |
| auto | color () const -> const QColor & |
| Returns the color of the component. | |
| virtual auto | sizeHint () const -> QSize |
| QProgressIndicator::sizeHint default minimum size. | |
| auto | heightForWidth (int w) const -> int |
| QProgressIndicator::heightForWidth square ratio. | |
Protected Member Functions | |
| virtual void | timerEvent (QTimerEvent *event) |
| QProgressIndicator::timerEvent do the actual animation. | |
| virtual void | paintEvent (QPaintEvent *event) |
| QProgressIndicator::paintEvent draw the spinner. | |
The QProgressIndicator class lets an application display a progress indicator to show that a lengthy task is under way.
Progress indicators are indeterminate and do nothing more than spin to show that the application is busy.
Definition at line 45 of file qprogressindicator.h.
|
explicit |
QProgressIndicator::QProgressIndicator constructor.
| parent | widget the indicator is placed in. |
Definition at line 36 of file qprogressindicator.cpp.
|
inline |
Returns the delay between animation steps.
Definition at line 55 of file qprogressindicator.h.
|
inline |
Returns the color of the component.
Definition at line 75 of file qprogressindicator.h.
Here is the caller graph for this function:| auto QProgressIndicator::heightForWidth | ( | int | w | ) | const -> int |
QProgressIndicator::heightForWidth square ratio.
| w | requested width |
Definition at line 102 of file qprogressindicator.cpp.
| auto QProgressIndicator::isAnimated | ( | ) | const -> bool |
Returns a Boolean value indicating whether the component is currently animated.
Definition at line 43 of file qprogressindicator.cpp.
Here is the caller graph for this function:| auto QProgressIndicator::isDisplayedWhenStopped | ( | ) | const -> bool |
Returns a Boolean value indicating whether the receiver shows itself even when it is not animating.
Definition at line 51 of file qprogressindicator.cpp.
|
protectedvirtual |
QProgressIndicator::paintEvent draw the spinner.
Definition at line 116 of file qprogressindicator.cpp.
Here is the call graph for this function:
|
slot |
Sets the delay between animation steps.
Setting the delay to a value larger than 40 slows the animation, while setting the delay to a smaller value speeds it up.
| delay | The delay, in milliseconds. |
Definition at line 73 of file qprogressindicator.cpp.
|
slot |
Sets the color of the components to the given color.
Definition at line 85 of file qprogressindicator.cpp.
Here is the call graph for this function:
|
slot |
Sets whether the component hides itself when it is not animating.
| state | The animation state. Set false to hide the progress indicator when it is not animating; otherwise true. |
Definition at line 45 of file qprogressindicator.cpp.
|
virtual |
QProgressIndicator::sizeHint default minimum size.
Definition at line 95 of file qprogressindicator.cpp.
|
slot |
Starts the spin animation.
Definition at line 55 of file qprogressindicator.cpp.
|
slot |
Stops the spin animation.
Definition at line 63 of file qprogressindicator.cpp.
|
protectedvirtual |
QProgressIndicator::timerEvent do the actual animation.
Definition at line 107 of file qprogressindicator.cpp.