An open API service indexing awesome lists of open source software.

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

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())
```