Pyqt5 Custom Widgets Save

More useful widgets for PyQt5

Project README

PyQt5 Custom Widgets drawing

More useful and stylish widgets for PyQt5 such as toggle switches, animated buttons, etc..

Table of Contents

Installing

Install using PIP (it might be pip3 or python3 depending on your platform)

pip install pyqt5Custom

or

python -m pip install pyqt5Custom

Also you can also use PySide2 instead of PyQt5 with just litte changes.

Usage

Just import pyqt5Custom and you're ready to go. You can check out Examples, one little example for StyledButton widget:

from pyqt5Custom import StyledButton

...

btn = StyledButton(text="Hello!")
btn.setStyleDict({
    "border-radius" : 20,
    "font-family" : "Helvetica",
    "font-size" : 17
  })

@btn.clicked.connect
def slot():
  print("Quitting!")
  app.exit()

layout.addWidget(btn)

...

Widgets

ToggleSwitch
ToggleSwitch
Documentation
StyledButton
StyledButton
Documentation
ImageBox
ImageBox
Documentation
ColorPicker
ColorPicker
Documentation
DragDropFile
DragDropFile
Documentation
EmbedWindow
EmbedWindow
Documentation
CodeTextEdit
CodeTextEdit
Documentation
TitleBar
TitleBar
Documentation
Spinner
Spinner
Documentation
Toast
Toast
Documentation

References

Dependencies

TODO

  • Better styling and QSS support
  • Rework animations using Qt's animation framework
  • Optimize and complete ColorPicker widget

License

GPL v3 © Kadir Aksoy

Open Source Agenda is not affiliated with "Pyqt5 Custom Widgets" Project. README Source: kadir014/pyqt5-custom-widgets
Stars
327
Open Issues
3
Last Commit
2 years ago
License

Open Source Agenda Badge

Open Source Agenda Rating