Skip to content

parhamoyan/qutewindow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

pip install qutewindow

Usage

Here is a minimal example:

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

About

Cross-platform frameless window based on Python and Qt

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages