A cross-platform frameless window based on pyside6, support Win32, Linux and macOS.
Project description
PySide6-Frameless-Window
A cross-platform frameless window based on PySide6
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 PySideSix-Frameless-Window
Or clone the repo:
git clone -b PySide6 https://github.com/zhiyiYo/PyQt-Frameless-Window.git
python setup.py install
Requirements
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 PySide6.QtWidgets import QApplication
from qframelesswindow import FramelessWindow
class Window(FramelessWindow):
def __init__(self, parent=None):
super().__init__(parent=parent)
self.setWindowTitle("PySide6-Frameless-Window")
self.titleBar.raise_()
if __name__ == '__main__':
app = QApplication(sys.argv)
demo = Window()
demo.show()
app.exec()
For more complex requirements, see demo.py and main_window.py.
Examples
- Normal frameless window
- Acrylic frameless window
Document
Want to know more about PySide6-Frameless-Window? Please read the help document 👈
Notes
-
FramelessWindow
provides a default custom title bar. If you don't like it, just rewrite it as demo.py does. -
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.
-
Snap layout is not enabled by default. See #56 to learn how to enable it.
-
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.
-
If you are using PySide2, PyQt5 or PyQt6, you can download the code in PySide2, PyQt5 or PyQt6 branch.
See Also
Here are some projects that use PyQt-Frameless-Window:
- zhiyiYo/Groove: A cross-platform music player based on PyQt5
- zhiyiYo/Alpha-Gobang-Zero: A gobang robot based on reinforcement learning
- zhiyiYo/PyQt-Fluent-Widgets: A fluent design widgets library based on Qt
- zhiyiYo/QMaterialWidgets: A material design widgets library based on Qt
Reference
- wangwenx190/framelesshelper: Frameless windows for Qt Widgets and Qt Quick applications. Support Win32, X11, Wayland and macOS
- libxcb: Basic Graphics Programming With The XCB Library
License
PySide6-Frameless-Window is licensed under LGPLv3.
Copyright © 2021 by zhiyiYo.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file PySideSix-Frameless-Window-0.4.3.tar.gz
.
File metadata
- Download URL: PySideSix-Frameless-Window-0.4.3.tar.gz
- Upload date:
- Size: 21.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae8650f854558ec678305fc98b8f79556372bf0dc9e3a4f29ee7c7e12bb68df5 |
|
MD5 | 3cb5be5d0944aaed79fe24f0caeca1a4 |
|
BLAKE2b-256 | 2c9ffb8cb3ee2bc75677258d34736aef42dd246012fdb091ab028aff92194834 |
File details
Details for the file PySideSix_Frameless_Window-0.4.3-py3-none-any.whl
.
File metadata
- Download URL: PySideSix_Frameless_Window-0.4.3-py3-none-any.whl
- Upload date:
- Size: 28.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c3cf2b9706aa98ecff41e95d3db293b4593a81c0b13fb1540910e560496ab96 |
|
MD5 | 0e6398ac6eb2d008546eb640a6cf2dc0 |
|
BLAKE2b-256 | dafbcde0fa7888e3f2a90927df1ef56651173b1a07f0398abe6b456750b7f109 |