Metadata-Version: 2.4
Name: QtTitlebar
Version: 1.0.0
Summary: Make change for titlebar of Qt
Author: bzNAK
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Example

```python
from PySide6.QtWidgets import *
from PySide6.QtCore import *
from PySide6.QtGui import *
import sys

from QtTitlebar import QtTitlebar

application: QApplication = QApplication(sys.argv)
main: QMainWindow = QMainWindow()

titlebar: QtTitlebar = QtTitlebar(main)
titlebar.setTheme(QtTitlebar.ThemeType.Light)
# QtTitlebar.ThemeType.
# Supports Dark, Light, and System

main.show()
sys.exit(application.exec())
```
