gpt4 book ai didi

自定义 Qt 类的 CSS 选择器

转载 作者:技术小花猫 更新时间:2023-10-29 10:36:21 26 4
gpt4 key购买 nike

我创建了 QWidget 的“Slider”子类,并希望能够使用 Qt 的样式表对其进行样式设置。有没有办法向 Qt 应用程序声明小部件,以便应用程序样式表中的此设置应用于所有 slider ?

Slider { background-color:blue; }

或者如果这不可能,我可以使用这样的类吗?

QWidget.slider { background-color:blue; }

最佳答案

小部件有一个“className()”方法,可以通过元对象访问。就我而言,这是:

slider.metaObject()->className();
// ==> mimas::Slider

由于“Slider”类位于命名空间中,因此您必须使用完全限定名称进行样式设置(将“::”替换为“--”):

mimas--Slider { background-color:blue; }

另一种解决方案是定义一个类属性并将其与前导点一起使用:

.slider { background-color:blue; }

C++ slider 类:

Q_PROPERTY(QString class READ cssClass)
...
QString cssClass() { return QString("slider"); }

在主题上,要使用 CSS 中定义的颜色和样式绘制 slider ,这就是获得它们的方式 ( link text ):

// background-color:
palette.color(QPalette::Window)

// color:
palette.color(QPalette::WindowText)

// border-width:
// not possible (too bad...). To make it work, you would need to copy paste
// some headers defined in qstylesheetstyle.cpp for QRenderRule class inside,
// get the private headers for QStyleSheetStyle and change them so you can call
// renderRule and then you could use the rule to get the width borders. But your
// code won't link because the symbol for QStyleSheetStyle are local in QtGui.
// The official and supported solution is to use property:

// qproperty-border:
border_width_ // or whatever stores the Q_PROPERTY border

最后,关于 CSS 中 QPalette 值的注释:

color                      = QPalette::WindowText
background = QPalette::Window
alternate-background-color = QPalette::AlternateBase
selection-background-color = QPalette::Highlighted
selection-color = QPalette::HighlightedText

关于自定义 Qt 类的 CSS 选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4596903/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com