QSS 的选择器

网友投稿 583 2022-05-30

本文连接地址:http://www.qtdebug.com/QSS-Selector.html

选择器决定了 style sheet 作用于哪些 Widget,QSS 支持 CSS2 定义的所有选择器。

通用选择器 *

类型选择器

类选择器

ID 选择器

属性选择器

包含选择器

子元素选择器

伪类选择器

Subcontrol 选择器

很多时候,可以使用不同的选择器实现相同效果的样式,使用非常灵活。

通用选择器 *

* 作为选择器,作用于所有的 Widget。

类型选择器

类名 作为选择器,作用于它自己和它的所有子类。

QFrame {

background: gray;

}

使用了类型选择器 QFrame,所以 QFrame 和它的子类 QLable,QLCDNumber,QTableWidget 等的背景会是灰色的,QPushButton 不是 QFrame 的子类,所以不受影响:

类选择器

. + 类名 或者 . + class 的属性值 作为选择器,只会作用于它自己,它的子类不受影响。

#include

#include

#include

int main(int argc, char *argv[]) {

QApplication app(argc, argv);

app.setStyleSheet("QWidget { background: gray; }");

QWidget *window = new QWidget();

QPushButton *openButton = new QPushButton("打开", window);

QPushButton *closeButton = new QPushButton("关闭", window);

QPushButton *saveButton = new QPushButton("保存", window);

QSS 的选择器

QHBoxLayout *layout = new QHBoxLayout(window);

layout->addWidget(openButton);

layout->addWidget(closeButton);

layout->addWidget(saveButton);

window->setLayout(layout);

window->show();

return app.exec();

}

window, openButton, closeButton 和 saveButton 的背景都变成灰色的了,如果只想要 window 的背景是灰色的,按钮的背景不变,可以这么设置

/* 把 QWidget 改成 .QWidget */

app.setStyleSheet(".QWidget {background: gray;}")

如果 openButton 和 closeButton 的背景是洋红色的,但是 saveButton 不受影响,则可以使用 . + class 的属性值 作为类选择器来设置

app.setStyleSheet(".QWidget { background: gray; }"

".QPushButton[level='dangerous'] { background: magenta; }");

// .RedButton 将作为类选择器

openButton->setProperty("class", "RedButton");

closeButton->setProperty("class", "RedButton");

.QPushButton[level="dangerous"]

.QPushButton[level='dangerous']

.QPushButton[level=dangerous]

ID 选择器

# + objectName 作为选择器,只作用于用此 objectName 的对象(多个对象可以使用同一个 objectName,但是不推荐这么做)。如上面的程序, openButton 和 closeButton 的背景是洋红色的,但是 saveButton 不受影响,也可以使用 ID 选择器来实现:

app.setStyleSheet(".QWidget { background: gray; }"

"#openButton, #closeButton { background: magenta; }");

// #openButton 和 #closeButton 作为 ID 选择器

openButton->setObjectName("openButton");

closeButton->setObjectName("closeButton");

属性选择器

选择器[属性="值"] 作为选择器,这个属性可用通过 object->property(propertyName) 访问的,Qt 里称为 Dynamic Properties。

如上面的程序, openButton 和 closeButton 的背景是洋红色的,但是 saveButton 不受影响,也可以使用属性选择器 来实现:

app.setStyleSheet(".QWidget { background: gray; }"

"QPushButton[level=\"dangerous\"] { background: magenta; }");

openButton->setProperty("level", "dangerous");

closeButton->setProperty("level", "dangerous");

QSS 会把所有 QPushButton 中 level 属性值为 dangerous 按钮的背景绘制为洋红色,其他按钮的背景色不受这个 QSS 影响。

包含选择器

英语叫做 Descendant Selector,descendant 的表达比较到位。

选择器之间用空格隔开,作用于 Widget 的 子Widget,子Widget 的 子Widget,……,子子孙孙,无穷尽也。

QFrame {

background: gray;

}

QFrame QPushButton {

border: 2px solid magenta;

border-radius: 10px;

background: white;

padding: 2px 15px;

}

顶部的 QPushButton 是 QFrame 的 descendant,所以 QSS 生效了,左下角的 QPushButton 的 parent 是 QWidget,所以 QSS 不起作用:

子元素选择器

选择器之间用 > 隔开,作用于 Widget 的直接 子Widget。

QFrame {

background: gray;

}

QFrame > QPushButton {

border: 2px solid magenta;

border-radius: 10px;

background: white;

padding: 2px 15px;

}

按钮 Child of QGroupBox 的 parent 是 QGroupBox,QGroupBox 的 parent 是 QFrame,所以 Child of QGroupBox 虽然是 QFrame 的 子Widget 的 子Widget,但不是 QFrame 的直接 子Widget,故 QSS 不起作用,而 按钮 Child of QFrame 的 parent 是 QFrame,所以它的样式改变了:

伪类选择器

选择器:状态 作为选择器,支持 ! 操作符,表示 非。

QPushButton:hover { color: white }

QCheckBox:checked { color: white }

QCheckBox:!checked { color: red }

鼠标放到 QPushButton 上时,它的文字为白色,QCheckBox 选中时文字为白色,未选中时为红色。

伪类选择器还支持链式规则:选择器:状态1:状态2:状态3,状态之间使用逻辑与,同时满足条件样式才生效

QCheckBox:hover:checked { color: white }

鼠标 放到 选中的 QCheckBox 上时,它的字体为白色。

伪类的说明写成中文怎么感觉都很别扭,惭愧,表达能力欠佳,在此仅作为抛砖引玉吧,更多更详细的内容请参考 Qt 的帮助文档,搜索 Qt Style Sheets Reference,查看最下面的 List of Pseudo-States。

当然,这些伪类并不是对任何 Widget 都起作用,例如 QLabel 没有 :checked 状态,即使设置了样式 QLabel:checked {color: red},对 QLabel 也是没有效果的,只有 Widget 支持某个状态,那么对应的伪类的样式才有作用。

Subcontrol 选择器

选择器::subcontrol 作为选择 Subcontrol 的选择器。

有些 Widget 是由多个部分组合成的,例如 QCheckBox 由 icon(indicator) 和 text 组成,可以使用 选择器::subcontrol 来设置 subcontrol 的样式:

QCheckBox::indicator {

width: 20px;

height: 20px;

}

QCheckBox {

spacing: 8px;

}

更多更详细的内容请参考 Qt 的帮助文档,搜索 Qt Style Sheets Reference,查看最下面的 List of Sub-Controls。

小程序

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:如何用绝对定位(position:absolute)完美布局
下一篇:帮你省了3个小时,来直接开发Unity的HelloWorld【保姆级别操作指导】
相关文章