qwindowkit icon indicating copy to clipboard operation
qwindowkit copied to clipboard

Cross-platform frameless window framework for Qt. Support Windows, macOS, Linux.

Results 80 qwindowkit issues
Sort by recently updated
recently updated
newest added

![image](https://github.com/stdware/qwindowkit/assets/3866433/cc1c27ef-b7b4-44cc-8e9b-00e16ed53702) Platform: seems to only occur on Windows 10 (22H2-19045.3803) and with ENABLE_WINDOWS_SYSTEM_BORDERS off Steps to reproduce: - I get it on application start with built-in and minimal examples Note:...

bug
fixed

If I add this line here the window can't be moved by dragging the title bar: ![image](https://github.com/stdware/qwindowkit/assets/3439875/0945279f-8f01-4b6c-8551-d7980b1c1f19) Window can't be moved if I drag the title bar: ![image](https://github.com/stdware/qwindowkit/assets/3439875/eae2b048-f2ca-4074-873a-2e62d7e365c6) Built by...

fixed

在Windows 11系统下组建双屏扩展模式,1号屏幕分辨率为2560*1600,2号屏幕分辨率为1920*1080,在任意屏幕下启动QWKExample_MainWindow.exe后,两个屏幕间用鼠标来回拖动(拖动完成时,需要释放鼠标后,再重新拖动),软件界面的纵向分辨率会变得越来越小,直至纵向分辨率达到最小。 ![snapshort](https://github.com/stdware/qwindowkit/assets/18276471/a96c793e-62ef-47cc-b7e6-5b376760d4f6)

bug
fixed

环境:Qt6.5.3 msvc2019 系统:windows11 现象: 1、非最大化情况下QStatusBar没有立即显示,要经过一次resize才能显示 2、最大化后QStatusBar没有显示,此时无法resize因此无法让其显示出来

wontfix

In my program, I use QuarterWidget (which extends QGLWidget) in Coin3D to draw 3D models. So I test QGLWidget in QWKExample_MainWindow when it's needed to import QWK. Replace the ClockWidget...

bug

在QML模式中拖动标题栏会使窗口内的控件错位,应该刚好错位一个标题栏的高度。 另外如果设置`qputenv("QSG_RHI_BACKEND", "opengl");`的话会使标题栏的y坐标变为负数,也就是在窗口外面。 ```qml Text { anchors { bottom: parent.bottom bottomMargin: 32 left: parent.left } font { pointSize: 14 bold: true } color: "#ECECEC" text: 'test' } ``` https://github.com/stdware/qwindowkit/assets/116291671/7982c23a-2446-4719-9d47-54881d12e19b

duplicate

当调用close()关闭窗口后,重新显示时标题栏将无法拖动,不知道是否是特性还是bug。 测试方式: 使用QWKExample_MainWindow项目进行测试 修改代码如下: MainWindow w; //w.show(); QPushButton button; QObject::connect(&button, &QPushButton::clicked, [&w] { w.show(); }); button.show(); return a.exec(); 我的qt版本6.5.2 vs2022 经过测试 framelesshelper也存在相同的问题

bug
fixed

操作系统:Win10 22H2 Qt版本:6.7.0 使用如下代码测试: ``` c++ import QtQuick import QtQuick.Window import QtQuick.Controls import Qt.labs.platform import QWindowKit Window { id: window width: 800 height: 600 title: qsTr("Hello, world!") Component.onCompleted: { windowAgent.setup(window)...

bug

PySide2是对Qt的封装,该项目是否有支持Pyside2的计划,或者有没有什么建议。

enhancement
wontfix

细心观察,这窗口在Mac黑色主题下,有一个黑色的边框,我观察了其他软件的窗口,这个黑色边框也有,但是我观察飞书这个软件时,却没有这个黑色边框,有没有办法去掉这个黑色边框?实际上白色主题也有这个边框,但是不容易观察

question