如何使用 qss 自定义 QMdiSubWindow 的标题栏?

发布于 2024-10-11 06:11:30 字数 397 浏览 2 评论 0原文

我想自定义 QMdiSubWindow 的标题栏。 为此,我使用了 qss。

QMdiSubWindow { border: 1px solid #000000; background: #000000 }
QMdiSubWindow:title { background: #000000 }

问题是应用此 qss 时,窗口图标消失。 我知道可以在 qss 中为 QDockWidget 定义这些图标,

QDockWidget { ... titlebar-close-icon: url(myCloseIcon.png); ... }

但是我找不到为 QMdiSubWindow 定义它的方法。 也许这种方式并不存在。 你知道这是否可能吗?

I'd like to customize the titlebar of a QMdiSubWindow.
For that I use a qss.

QMdiSubWindow { border: 1px solid #000000; background: #000000 }
QMdiSubWindow:title { background: #000000 }

The problem is when applying this qss, the window icons disappear.
I know it's possible to define these icons in qss for a QDockWidget

QDockWidget { ... titlebar-close-icon: url(myCloseIcon.png); ... }

However I can't find a way to define it for a QMdiSubWindow.
Perhaps this way doesn't exists.
Do you know if it's possible ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沙与沫 2024-10-18 06:11:30

Qt 5.2 开始,您不能这样做;尚未检查 5.3,但据我所知,他们没有更改 5.3 版本中的 QMdiArea/QMdiSubWindow 中的任何内容。

最简单的解决方案是使用 QCommonStyle 并使用 QPainter 绘制标题栏。有关详细信息,请参阅 QCommonStyleQStyle 文档。请注意,建议为您的样式类派生 QCommonStyle 而不是 QStyleQCommonStyle 继承了 QStyle 所以你不会丢失任何东西。

如果您想实现更复杂的效果,例如子窗口上的阴影,那么您剩下的唯一选择就是派生 QMdiSubWindowQMdiArea,调用 QWidget::setWindowFlags(Qt::FramelessWindowHintflag)QMdiSubWindow 派生类上,并从头开始实现带有您自己的标题栏的子窗口。然后,您可以定义自己的 QColor 类型的 Q_PROPERTY 并从 QSS 访问它们,例如公开的 此处,以便从 QSS 自定义标题栏颜色。

另一种选择是从头开始创建一个新的 MDI 区域小部件,但我认为这不适用于您的情况。如果您只需要使用自定义样式自定义标题栏,那么这是您可以解决的最佳方法。如果遇到麻烦,可以提供示例作为对本文的编辑。

但如果您想仅使用 QSS 自定义标准 QMdiSubWindow,不幸的是目前还不可能。

As of Qt 5.2 you can't; haven't checked 5.3 but AFAIK they didn't changed anything in the QMdiArea/QMdiSubWindow in the 5.3 release.

The easiest solution you have is to use QCommonStyle and paint the title bar using QPainter. For more info on that see the QCommonStyle and QStyle documentations. Please note that it is recommended to derive QCommonStyle and not QStyle for your style class. QCommonStyle inherits QStyle so you won't loose anything.

And if you want to achieve more complex effects such as drop shadow on the sub window then the only option you have left here is to derive QMdiSubWindow and QMdiArea, call QWidget::setWindowFlags(Qt::FramelessWindowHintflag) on the QMdiSubWindow derived class and implement from scratch your own subwindow with your own title bar. You can then define your own Q_PROPERTYs of type QColor and access those from QSS like exposed here in order to customize titlebar colors from QSS.

Another option would be to create a new MDI area widget from scratch but I don't think this would be applicable in your case. If you just need to customize the title bar using a custom style is the best approach you can tackle. If in trouble examples could be provided as an edit to this post.

But if you want to customize the standard QMdiSubWindow using just QSS, unfortunately it is not possible for the moment.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文