An easy-to-use and modern toggle switch for Qt Python binding PyQt
Project description
SwitchControl for PyQt6
(forked from Prx001/QSwitchControl)
Custom toggle-switch widget implemented for *PyQt6* applications!
An easy-to-use and modern toggle switch for Qt Python binding PyQt
PyQt6_SwitchControl is a custom toggle-switch widget inherited from 'QCheckBox' class, and acts as a checkbox alternative widget in your PyQt6 application.
This repository is a fork from Prx001's QSwitchControl project but the code has been modified to work with PyQt6.
How to use?
Installation
The package is available on PyPi so as always use pip for installation:
pip install PyQt6_SwitchControl
Usage in your Python application
First of all, as expected, you need to import the package. Import 'SwitchControl' class from the package:
from PyQt6_SwitchControl import SwitchControl
Now the class is ready to use! SwitchControl is an alternative widget for QCheckBox from Qt framework, same methods, same usage and that's how it works. There are things you can define for your SwitchControl, like the circle color, background color, active color, animation easing curve, animation duration and some other things, but you can use default values. The package contains a 'main' script, so you can test the widget easily:
python -m PyQt6_SwitchControl
Bellow is the 'main' script:
import sys
from PyQt6.QtCore import Qt
from PyQt6.QtWidgets import QApplication, QWidget, QHBoxLayout
from PyQt6_SwitchControl import SwitchControl
class Form(QWidget):
def __init__(self):
super().__init__()
self.init_ui()
def init_ui(self):
self.resize(400, 400)
self.setWindowTitle("SwitchControl test")
self.setStyleSheet("""
background-color: #222222;
""")
switch_control = SwitchControl()
h_box = QHBoxLayout()
h_box.addWidget(switch_control, Qt.AlignmentFlag.AlignCenter, Qt.AlignmentFlag.AlignCenter)
self.setLayout(h_box)
self.show()
if __name__ == '__main__':
app = QApplication(sys.argv)
form = Form()
form.show()
app.exec()
In this script we used the default values for our widget:
switch_control = SwitchControl()
You can define the values yourself. Bellow is an example:
switch_control = SwitchControl(bg_color="#777777", circle_color="#DDD", active_color="#aa00ff", animation_curve=QtCore.QEasingCurve.InOutCubic, animation_duration=300, checked=True, change_cursor=False)
Qt Designer integration
Qt Designer is a very extensible tool, even can support your custom widgets! It means you can interact with your custom widget just as you do with Qt widgets, like QPushButton, QCheckBox, you can drag and drop them on your form, change their sizes, set properties and so on. Qt Designer can load plugins, and you can load your custom widgets through plugins, then your custom widget is available in Qt Designer Widget Box. In C++, using Qt Creator IDE you can create your custom widgets and compile them to .dll file, then you put the dll file (your plugin) into Qt Designer's relative path for plugins, and that's it you can use your widget in Designer. But, here in python the story is a little different. PyQt supports this plugin development and integrate Python based Qt custom widgets in Qt Designer. Learn more about integrating PyQt custom widgets in Qt Designer There is the Qt Designer plugin for PyQt6_SwitchControl in package, PyQt6_SwitchControl_plugin.py. You can load it to your Qt Designer.
Project details
Release history Release notifications | RSS feed
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 pyqt6_switchcontrol-1.0.4.post1.tar.gz
.
File metadata
- Download URL: pyqt6_switchcontrol-1.0.4.post1.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9dfb6bc7e249122c21df640bdf70f61dec86367c613ee841a80bb91bc62141e |
|
MD5 | 89b4f3c430d42dd06b7c90ff8025240a |
|
BLAKE2b-256 | bec8ef4a7d8af38ead06e4a1e124a2bded7e0192e270129c43426b64fbe568c2 |
File details
Details for the file PyQt6_SwitchControl-1.0.4.post1-py3-none-any.whl
.
File metadata
- Download URL: PyQt6_SwitchControl-1.0.4.post1-py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a6e80d02f6bb2dcf7abf571b30ec7a69ac3c9909691a95aaf31079ee1839d8b |
|
MD5 | 50bc8a0c76c6a75d5475afc5ccb0140b |
|
BLAKE2b-256 | 10eaa719ed5ed6e30e7bb8cce736f86c7d17f9fcdc9afc63c7ee3c43a8b7c01c |