QSS 选择器

转载: https://blog.csdn.net/z609932088/article/details/51011071

 

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

QSS 的选择器有:

  • 通用选择器 *
  • 类型选择器
  • 类选择器
  • ID 选择器
  • 属性选择器
  • 包含选择器
  • 子元素选择器
  • 伪类选择器
  • Subcontrol 选择器

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

通用选择器 *

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

类型选择器

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

 
  1. QFrame {

  2.  
  3. background: gray;

  4.  
  5. }

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

类选择器

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

 
  1. #include <QApplication>

  2. #include <QPushButton>

  3. #include <QHBoxLayout>

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

  6. QApplication app(argc, argv);

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

  9.  
  10. QWidget *window = new QWidget();

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

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

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

  14.  
  15. QHBoxLayout *layout = new QHBoxLayout(window);

  16. layout->addWidget(openButton);

  17. layout->addWidget(closeButton);

  18. layout->addWidget(saveButton);

  19. window->setLayout(layout);

  20. window->show();

  21.  
  22. return app.exec();

  23. }

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

 
  1. /* 把 QWidget 改成 .QWidget */

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

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

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

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

  3.  
  4. // .RedButton 将作为类选择器

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

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

 

属性的值可以用单引号,双引号括起来,如果值没有空格,甚至可以不用引号,但不推荐这么做:

  1. .QPushButton[level="dangerous"]
  2. .QPushButton[level='dangerous']
  3. .QPushButton[level=dangerous]

 

ID 选择器

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

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

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

  3.  
  4. // #openButton 和 #closeButton 作为 ID 选择器

  5. openButton->setObjectName("openButton");

  6. closeButton->setObjectName("closeButton");

 

属性选择器

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

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

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

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

  3.  
  4. openButton->setProperty("level", "dangerous");

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

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

包含选择器

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

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

 
  1. QFrame {

  2. background: gray;

  3. }

  4.  
  5. QFrame QPushButton {

  6. border: 2px solid magenta;

  7. border-radius: 10px;

  8. background: white;

  9. padding: 2px 15px;

  10. }

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

子元素选择器

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

 
  1. QFrame {

  2. background: gray;

  3. }

  4.  
  5. QFrame > QPushButton {

  6. border: 2px solid magenta;

  7. border-radius: 10px;

  8. background: white;

  9. padding: 2px 15px;

  10. }

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

伪类选择器

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

 
  1. QPushButton:hover { color: white }

  2. QCheckBox:checked { color: white }

  3. QCheckBox:!checked { color: red }

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

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

QCheckBox:hover:checked { color: white }

 

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

常用伪类选择器有:

伪类说明
:disabledWidget 被禁用时
:enabledWidget 可使用时
:focusWidget 得到输入焦点
:hover鼠标放到 Widget 上
:pressed鼠标按下时
:checked被选中时
:unchecked未选中时
:has-childrenItem 有子 item,例如 QTreeView 的 item 有子 item 时
:has-siblingsItem 有 兄弟,例如 QTreeView 的 item 有兄弟 item 时
:open打开或展开状态,例如 QTreeView 的 item 展开,QPushButton 的菜单弹出时
:closed关闭或者非展开状态
:onWidget 状态是可切换的(toggle), 在 on 状态
:offWidget 状态是可切换的(toggle), 在 off 状态

伪类的说明写成中文怎么感觉都很别扭,惭愧,表达能力欠佳,在此仅作为抛砖引玉吧,更多更详细的内容请参考 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 的样式:

 
  1. QCheckBox::indicator {

  2. width: 20px;

  3. height: 20px;

  4. }

  5. QCheckBox {

  6. spacing: 8px;

  7. }

 

常用的 Subcontrol 有:

Subcontrol说明
::indicatorA QCheckBox, QRadioButton, checkable QMenu item, 
or a checkable QGroupBox's indicator
::menu-indicatorA QPushButton's menu indicator
::itemA QMenu, QMenuBar, or QStatusBar's item
::up-buttonA QSpinBox or QScrollBar's up button
::down-buttonA QSpinBox or QScrollBar's down button
::up-arrowA QSpinBox, QScrollBar, or QHeaderView's up arrow
::down-arrowA QSpinBox, QScrollBar, or QHeaderView's down arrow
::drop-downA QComboBox's drop-down arrow
::titleA QGroupBox or QDockWidget's title
::grooveA QSlider's groove
::chunkA QProgressBar's progress chunk
::branchA QTreeView's branch indicator

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

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值