Skip to main content

A cross-platform frameless window based on pyqt6, support Win32, Linux and macOS.

Project description

logo

PyQt6-Frameless-Window

A cross-platform frameless window based on PyQt6

Platform Win32 | Linux | macOS Download MIT

Cover

Features

  • Moving
  • Stretching
  • Window shadow
  • Window animation
  • Win11 snap layout
  • Win10 acrylic blur
  • Win11 mica blur
  • Win7 Aero blur
  • MacOS blur

Install

To install use pip:

pip install PyQt6-Frameless-Window

Or clone the repo:

git clone -b PyQt6 https://github.com/zhiyiYo/PyQt-Frameless-Window.git
python setup.py install

Requirements

Because the Qt resource system is used, the version of PyQt6 needs to be greater than 6.3.1. In addition, some third-party packages are required.

Platform Requirement
Win32 pywin32
MacOS pyobjc

Usage

To use the frameless window, you only need to inherit FramelessWindow or FramelessMainWindow. Here is a minimal example:

import sys

from PyQt6.QtWidgets import QApplication
from qframelesswindow import FramelessWindow


class Window(FramelessWindow):

    def __init__(self, parent=None):
        super().__init__(parent=parent)
        self.setWindowTitle("PyQt-Frameless-Window")
        self.titleBar.raise_()


if __name__ == '__main__':
    app = QApplication(sys.argv)
    demo = Window()
    demo.show()
    sys.exit(app.exec_())

For more complex requirements, see demo.py and main_window.py.

Examples

  • Normal frameless window Normal Frameless Window
  • Acrylic frameless window Acrylic Frameless Window

Documentation

Want to know more about PyQt6-Frameless-Window? Please read the help document 👈

Notes

  1. FramelessWindow provides a default custom title bar. If you don't like it, just rewrite it as demo.py does.

  2. Moving the acrylic window on Win10 may get stuck. At present, there is no good solution. Maybe you can disable the acrylic effect when moving the window, but I haven't done this in the source code.

  3. Snap layout is not enabled by default. See #56 to learn how to enable it.

  4. If you encounter this problem on Windows:

    ImportError: DLL load failed while importing win32api

    see my answer on stackoverflow or my blog for the solution.

  5. If you are using PySide2, PySide6 or PyQt5, you can download the code in PySide2, PySide6 or PyQt5 branch.

See Also

Here are some projects that use PyQt-Frameless-Window:

Reference

License

PyQt6-Frameless-Window is licensed under GPLv3.

Copyright © 2021 by zhiyiYo.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PyQt6-Frameless-Window-Fix-0.3.8.tar.gz (30.5 kB view details)

Uploaded Source

File details

Details for the file PyQt6-Frameless-Window-Fix-0.3.8.tar.gz.

File metadata

File hashes

Hashes for PyQt6-Frameless-Window-Fix-0.3.8.tar.gz
Algorithm Hash digest
SHA256 78ab53c798d68e3622008d2f7000fdce4efa894ed7a1be72a0b152fbba857db2
MD5 fc1352679779111dc5ea2a926600db4d
BLAKE2b-256 f9963cb75fe1a09aa84d23cbd6ef1895871ed773e8356f2d02c64b4ac06ac4ad

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page