QDialog 未在 MACOS 上的全屏应用程序上显示

发布于 2025-01-10 02:31:15 字数 768 浏览 0 评论 0原文

我实现了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文