Waiting spinner for PyQt5
Project description
QtWaitingSpinner
QtWaitingSpinner is a highly configurable, custom Qt widget for showing "waiting" or "loading" spinner icons in Qt applications, e.g. the spinners below are all QtWaitingSpinner widgets differing only in their configuration:
The widget is pretty customizable:
Installation
pip install pyqtspinner
Configuration
The following properties can all be controlled directly through their corresponding setters:
- Color of the widget
- "Roundness" of the lines
- Speed (rotations per second)
- Number of lines to be drawn
- Line length
- Line width
- Radius of the spinner's "dead space" or inner circle
- The percentage fade of the "trail"
- The minimum opacity of the "trail"
Usage
You can easily adjust spinner settings by running:
pyqtspinner-conf
Make the spinner you would like and press "show init args" button. It will generate the code snippet which is almost ready-to-use:
WaitingSpinner(
parent,
roundness=100.0,
opacity=3.141592653589793,
fade=80.0,
radius=10,
lines=20,
line_length=10,
line_width=2,
speed=1.5707963267948966,
color=(0, 0, 0)
)
As an alternative example, the code below will create a spinner that (1) blocks all user input to the main application for as long as the spinner is active, (2) automatically centers itself on its parent widget every time "start" is called and (3) makes use of the default shape, size and color settings.
spinner = QtWaitingSpinner(self, True, True, Qt.ApplicationModal)
spinner.start() # starts spinning
Enjoy!
Thanks:
to @z3ntu for the groundwork. to @snowwlex for the widget itself.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyqtspinner-2.0.0.tar.gz
.
File metadata
- Download URL: pyqtspinner-2.0.0.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.10.2 Darwin/20.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 273d42cf95b11203375c06ee9e6c9e853c0017bb1ada844f494e21e97ca305e4 |
|
MD5 | 2e13fadd43202b68673940a27d1d4862 |
|
BLAKE2b-256 | 29cbf7500dd7a4b3464f7cf8932063a3563db05e5f19bf93af3957156e8fcecc |
File details
Details for the file pyqtspinner-2.0.0-py3-none-any.whl
.
File metadata
- Download URL: pyqtspinner-2.0.0-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.10.2 Darwin/20.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04646fe09287d6bd99bdd78ac1633aa2ce6caab70b2bd5e7ee0fc51dd4113220 |
|
MD5 | 47671b3fd3e7dc9bdd1ae4676d594932 |
|
BLAKE2b-256 | 42f96b373e748886fd510fa16585f03ed67674ef1faa2a2610ed20be2d865568 |