https://github.com/parhamoyan/qutewindow
Cross-platform frameless window based on Python and Qt
https://github.com/parhamoyan/qutewindow
cross-platform frameless-window pys pyside6 qt
Last synced: about 1 year ago
JSON representation
Cross-platform frameless window based on Python and Qt
- Host: GitHub
- URL: https://github.com/parhamoyan/qutewindow
- Owner: parhamoyan
- Created: 2023-03-13T00:07:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-24T21:44:55.000Z (almost 3 years ago)
- Last Synced: 2025-04-30T04:57:18.923Z (about 1 year ago)
- Topics: cross-platform, frameless-window, pys, pyside6, qt
- Language: Python
- Homepage:
- Size: 13.5 MB
- Stars: 14
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Qute Window
Cross-platform frameless window based on Python and Qt
## Examples
### Qute Window on macOS
### Qute Window on Windows
## Features
* Moving (the title bar area is draggable)
* Stretching
* Native window shadow
* Native window animations
* Win11 snap layout
## Installing via PIP
```shell
pip install qutewindow
```
## Usage
Here is a minimal example:
```python
import sys
from PySide6.QtWidgets import QApplication
from qutewindow import QuteWindow
if __name__ == "__main__":
app = QApplication(sys.argv)
demo = QuteWindow()
demo.show()
sys.exit(app.exec())
```