Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gmarull/qtmodern
PyQt/PySide Widgets Modern User Interface
https://github.com/gmarull/qtmodern
Last synced: 3 months ago
JSON representation
PyQt/PySide Widgets Modern User Interface
- Host: GitHub
- URL: https://github.com/gmarull/qtmodern
- Owner: gmarull
- License: mit
- Archived: true
- Created: 2017-09-21T17:41:48.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-03-28T20:26:40.000Z (almost 3 years ago)
- Last Synced: 2024-09-30T23:12:46.120Z (3 months ago)
- Language: Python
- Size: 354 KB
- Stars: 744
- Watchers: 22
- Forks: 113
- Open Issues: 23
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-qt - qtmodern
README
========
qtmodern
========.. image:: https://travis-ci.org/gmarull/qtmodern.svg?branch=master
:target: https://travis-ci.org/gmarull/qtmodern
:alt: Travis build.. image:: https://img.shields.io/pypi/v/qtmodern.svg
:target: https://pypi.python.org/pypi/qtmodern
:alt: PyPI Version``qtmodern`` is a Python package aimed to make PyQt/PySide applications look
better and consistent on multiple platforms. It provides a custom frameless
window and a dark theme. In order to be compatible with multiple Python Qt
wrappers `QtPy `_ is used. The initial idea
comes from `this project `_... image:: examples/mainwindow.png
:width: 450px
:align: center
:alt: ExampleInstallation
------------The recommended way to install is by using ``pip``, i.e::
pip install qtmodern
Usage
-----In order to use ``qtmodern``, simply apply the style you want to your
application and then, create a ``ModernWindow`` enclosing the window you want to
*modernize*::import qtmodern.styles
import qtmodern.windows...
app = QApplication()
win = YourWindow()qtmodern.styles.dark(app)
mw = qtmodern.windows.ModernWindow(win)
mw.show()...