kadir014 / pyqt5-custom-widgets

More useful widgets for PyQt5

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

More useful widgets for PyQt5

License:GNU General Public License v3.0


Languages

Language:Python 100.0%