如何使用 qss 自定义 QMdiSubWindow 的标题栏?
我想自定义 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从
Qt 5.2
开始,您不能这样做;尚未检查5.3
,但据我所知,他们没有更改5.3
版本中的QMdiArea/QMdiSubWindow
中的任何内容。最简单的解决方案是使用 QCommonStyle 并使用 QPainter 绘制标题栏。有关详细信息,请参阅 QCommonStyle 和 QStyle 文档。请注意,建议为您的样式类派生
QCommonStyle
而不是QStyle
。QCommonStyle
继承了QStyle
所以你不会丢失任何东西。如果您想实现更复杂的效果,例如子窗口上的阴影,那么您剩下的唯一选择就是派生
QMdiSubWindow
和QMdiArea
,调用QWidget::setWindowFlags(Qt::FramelessWindowHintflag)
在QMdiSubWindow
派生类上,并从头开始实现带有您自己的标题栏的子窗口。然后,您可以定义自己的QColor
类型的Q_PROPERTY
并从QSS
访问它们,例如公开的 此处,以便从QSS
自定义标题栏颜色。另一种选择是从头开始创建一个新的 MDI 区域小部件,但我认为这不适用于您的情况。如果您只需要使用自定义样式自定义标题栏,那么这是您可以解决的最佳方法。如果遇到麻烦,可以提供示例作为对本文的编辑。
但如果您想仅使用
QSS
自定义标准QMdiSubWindow
,不幸的是目前还不可能。As of
Qt 5.2
you can't; haven't checked5.3
but AFAIK they didn't changed anything in theQMdiArea/QMdiSubWindow
in the5.3
release.The easiest solution you have is to use
QCommonStyle
and paint the title bar usingQPainter
. For more info on that see the QCommonStyle and QStyle documentations. Please note that it is recommended to deriveQCommonStyle
and notQStyle
for your style class.QCommonStyle
inheritsQStyle
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
andQMdiArea
, callQWidget::setWindowFlags(Qt::FramelessWindowHintflag)
on theQMdiSubWindow
derived class and implement from scratch your own subwindow with your own title bar. You can then define your ownQ_PROPERTY
s of typeQColor
and access those fromQSS
like exposed here in order to customize titlebar colors fromQSS
.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 justQSS
, unfortunately it is not possible for the moment.