QDialog 未在 MACOS 上的全屏应用程序上显示
我实现了 QDialog 并希望将其显示为不同平台(Windows、Linux、MAC)上所有窗口顶部的通知。
我的类定义:
class Notification : public QDialog
{
Q_OBJECT
public:
explicit Notification(QWidget* parent = nullptr);
}
以及实现:
Notification::Notification(QWidget* parent) :
QDialog(parent),
ui(new Ui::Notification)
{
ui->setupUI(this);
setWindowFlags(Qt::Dialog | Qt::WindowStaysOnTopHint | Qt::WindowSystemMenuHint | Qt::FramelessWindowHint);
}
以及该类的用法:
auto* notification = new Notification();
notification->show();
它在 Windows 和 Linux 上完美运行,但在 MAC 上,由于某种原因,如果其他应用程序在全屏上打开(例如浏览器),那么 QDialog 将显示在全屏应用程序下。 我尝试指定 Qt::Tool 和 Qt::SubWindow 标志而不是 Qt::Dialog 但这没有帮助。 此外,尝试在演出结束后致电加薪,但这并没有改变任何事情。
I implemented QDialog and want to show it as notification on top of all windows on different platforms (Windows, Linux, MAC).
My class definition:
class Notification : public QDialog
{
Q_OBJECT
public:
explicit Notification(QWidget* parent = nullptr);
}
And the implementation:
Notification::Notification(QWidget* parent) :
QDialog(parent),
ui(new Ui::Notification)
{
ui->setupUI(this);
setWindowFlags(Qt::Dialog | Qt::WindowStaysOnTopHint | Qt::WindowSystemMenuHint | Qt::FramelessWindowHint);
}
And usage of the class:
auto* notification = new Notification();
notification->show();
It works perfectly on Windows and Linux but on MAC for some reason if some other application opened on full screen (e.g. browser) then QDialog will be shown under full screen app.
I tried to specify Qt::Tool and Qt::SubWindow flags instead of Qt::Dialog but this didn't help.
Also, tried to call raise after show but this didn't change anything.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论