当前位置:   article > 正文

Qt样式表_qt 样式 hover

qt 样式 hover

一、QT样式表简介

1、QT样式表简介

QSS的主要功能是使界面的表现与界面的元素分离,使得设计皮肤与界面控件分离的软件成为可能。

QT样式表是允许用户定制widgets组件外观的强大机制,此外,子类化QStyle也可以定制widgets组件外观。QT样式表的概念、术语、语法很大程度上受到了CSS层叠样式表的影响。

样式表是使用QApplication::setStyleSheet()设置在应用程序或是使用QWidget::setStyleSheet()设置在具体组件及其子对象的文字说明。

例如,以下样式表指明QLineEdit使用黄色作为背景色,QCheckBox使用红色作为文本颜色。

  1. QLineEdit { background: yellow }
  2. QCheckBox { color: red }

对于这种定制,样式表比QPalette更强大。例如,要获取一个红色的按钮,可以设置QPushButton的QPalette::Button角色为红色。然而,这并不保证对所有的样式有效,因为样式的构造者会被不同平台的原则和本地的主题引擎所限制。

样式表可以实现那些很难或是不可能使用QPalette实现的所有定制。

如果想要某些强制字段为黄色背景,按钮为红色文字,或是绚丽的复选框,样式表可以完成。

本文福利,费领取Qt开发学习资料包、技术视频,内容包括(Qt实战项目,C++语言基础,C++设计模式,Qt编程入门,QT信号与槽机制,QT界面开发-图像绘制,QT网络,QT数据库编程,QT项目实战,QSS,OpenCV,Quick模块,面试题等等)↓↓↓↓↓↓见下面↓↓文章底部点击费领取↓↓

2、QT样式表编程

A、在代码中直接设置QSS

  1. QPushButton *button = new QPushButton(this);
  2. button->setText("hello");
  3. button->setStyleSheet("QPushButton{background-color:red; color:blue}");

B、通过文件设置QSS

将QSS代码写入.qss文件

将.qss文件加入资源文件qrc.qrc中

在代码中读取QSS文件设置组件QSS

  1. QPushButton *button = new QPushButton(this);
  2. button->setText("hello");
  3. QFile file(":/qss/dev.qss");
  4. file.open(QIODevice::ReadOnly);
  5. QString stylesheet = QLatin1String(file.readAll());
  6. button->setStyleSheet(stylesheet);
  7. file.close();

二、QT样式表语法

QT样式表的术语和语法规则与HTML CSS很相似。

1、样式规则

样式表由样式规则序列组成。样式规则由选择器和声明组成。选择器指定了那些组件受规则影响,声明指定了组件设置了哪些属性。例如:

QPushButton { color: red }

以上样式规则中,QPushButton是选择器,{ color: red }是声明。样式规则指定了QPushButton及其子类应使用红色作为前景色。

QT样式表大小写不敏感,除了类名、对象名、QT属性名是大小写敏感的。

多个选择器可以指定同一个声明,使用逗号分隔选择器。例如以下规则:

QPushButton, QLineEdit, QComboBox { color: red }

等效于三个规则:

  1. QPushButton { color: red }
  2. QLineEdit { color: red }
  3. QComboBox { color: red }

样式规则的声明部分是一个“属性:值”对的链表。声明部分在{}内,不同的属性:值”对使用分号分隔。例如:

QPushButton { color: red; background-color: white }

2、选择器的类型

到目前为止所有的例子使用的都是最简单的选择器类型。QT样式表支持CSS2定义的所有选择器。下表总结了最常用的选择器类型。

3、子控件选择器

对于样式复杂的组件,需要访问组件的子控件,如QComboBox的下拉按钮或QSpinBox的上下箭头。选择器可以包含子控件来对组件的特定子控件应用规则。

QComboBox::drop-down { image: url(dropdown.png) }

以上规则会对所有QComboBox的下拉框应用样式规则。尽管双冒号::很像CSS3的伪元素,但QT子控件选择器在概念上是不同的,有不同的级联语义。

子控件选择器通常根据另一个参考元素进行定位。参考元素可以是组件或是另一个子控件选择器。例如,QComboBox的::drop-down默认放置在QComboBox衬底矩形的右上角。::drop-down默认放置在::drop-down子控件选择器的内容矩形的中心。

可以使用subcontrol-origin属性改变原点矩形。例如,如果想要将drop-down放置在边界矩形而不是默认的衬底矩形,可以指定:

  1. QComboBox {
  2. margin-right: 20px;
  3. }
  4. QComboBox::drop-down {
  5. subcontrol-origin: margin;
  6. }

drop-down在边界矩形内的对齐方式通过subcontrol-position属性改变。宽属性和高属性用于控制子控件选择器的大小。注意,设置一幅图片会隐式地设置子控件选择器的大小。

相对定位方法(position:relative)允许子控件选择器的位置偏离它原来的位置。例如,当QComboBox的下拉按钮按下,想要一种被按下的效果可以通过指定如下实现:

  1. QComboBox::down-arrow {
  2. image: url(down_arrow.png);
  3. }
  4. QComboBox::down-arrow:pressed {
  5. position: relative;
  6. top: 1px; left: 1px;
  7. }

绝对定位方法(position:absolute)允许子控件选择器的位置和大小的改变与参考元素有关。

一旦定位,就可以像组件那样使用盒子模型对其进行造型。

注意,像QComboBox和QScrollBar这样复杂的组件,如果有一个属性或是子控件选择器被定制,所有其他的属性或是子控件选择器也要必须被定制。

常用辅助控制器:

::indicator 单选框、复选框、可选菜单项或可选群组项的指示器

::menu-indicator 按钮的菜单指示器

::item 菜单、菜单栏或状态栏项

::up-button 微调框或滚动条的向下按钮

::down-button 微调框或滚动条的向上按钮

::up-arrow 微调框、滚动条或标题视图的向上按钮

::down-arrow 微调框、滚动条或标题视图的向下按钮

::drop-down 组合框的下拉箭头

::title 群组框的标题

4、伪选择器

选择器可能包含限制基于组件状态的规则应用的伪状态。伪状态出现在选择器的尾部,中间使用分号连接。例如,以下规则用于鼠标悬停在一个QPushButton上:

QPushButton:hover { color: white }

伪状态可以使用叹号取反,例如,以下规则用于鼠标不悬停在QRadioButton:

QRadioButton:!hover { color: red }

伪状态可以以逻辑与的方式连接使用,例如,以下规则应用于鼠标悬停在一个选中的QCheckBox上:

QCheckBox:hover:checked { color: white }

取反伪状态可以出现在伪状态链中。例如,以下规则用于鼠标悬停在一个QPsuButton上,但没有按下:

QPushButton:hover:!pressed { color: blue; }

如果需要,使用逗号可以将伪状态以逻辑或连接。

QCheckBox:hover, QCheckBox:checked { color: white }

伪状态可以结合子控件选择器使用:

QComboBox::drop-down:hover { image: url(dropdown_bright.png) }

常用状态:

:disabled 禁用的窗口部件

:enabled 启用的窗口部件

:focus 窗口部件有输入焦点

:hover 鼠标在窗口部件上悬停

:pressed 鼠标按键点击窗口部件

:checked 按钮已被选中

:unchecked 按钮未被选中

:indeterminate 按钮被部分选中

:open 窗口部件处于打开或扩展的状态

:closed 窗口部件处于关闭或销毁状态

:on 窗口部件的状态是on

:off 窗口部件的状态是on

5、冲突处理

当多个样式规则使用多个值指定同一个属性时会产生冲突。

  1. QPushButton#okButton { color: gray }
  2. QPushButton { color: red }

以上两条规则匹配名为okButton的QPushButton实例,在color属性上有冲突。为了解决冲突,需要考虑选择器的特征。上例中,QPushButton#okButton比QPushButton要更具体,因为QPushButton#okButton指向单个的对象,而不是类的所有实例。

类似,伪选择器比未指定伪状态的选择器更具体。因而,以下样式表指定,当鼠标悬停在QPushButton上时,QPushButton的文本为白色,否则为红色。

  1. QPushButton:hover { color: white }
  2. QPushButton { color: red }

严谨一点应该是:

  1. QPushButton:hover { color: white }
  2. QPushButton:enabled { color: red }

如果鼠标悬停在按钮上,两个选择器有相同的特性,则第二条规则优先。如果想要文本为白色,需要重新排序规则:

  1. QPushButton:enabled { color: red }
  2. QPushButton:hover { color: white }

或者,可以使第一条规则更加具体:

  1. QPushButton:hover:enabled { color: white }
  2. QPushButton:enabled { color: red }

和类型选择器一起使用时,类似的问题也会发生

  1. QPushButton { color: red }
  2. QAbstractButton { color: gray }

以上两条规则用于QPushButton实例(由于QPushButton继承自QAbstractButton),并有color属性的冲突。由于QPushButton继承自QAbstractButton,所以会假设QPushButton比QAbstractButton更具体。然而,对于样式表的计算,所有的类型选择器有相同的特性,最后出现的规则优先。换句话说,所有的QAbstractButton的color属性会被设置为gray,包括QPushButton。如果真的想要QPushButton的文本为red,通常会重新排序规则。

为了确定规则的特性,QT样式表遵循CSS2规范:

选择器特性的计算方法如下:

计算选择器中ID属性的数量(=a)

计算选择器中其他属性和伪状态类的数量(=b)

计算选择器中元素的数量(=c)

忽略伪元素(如子控件选择器)

串联的三个数字a-b-c给出了特性。

* {} /* a=0 b=0 c=0 -> specificity = 0 */

LI {} /* a=0 b=0 c=1 -> specificity = 1 */

UL LI {} /* a=0 b=0 c=2 -> specificity = 2 */

UL OL+LI {} /* a=0 b=0 c=3 -> specificity = 3 */

H1 + *[REL=up]{} /* a=0 b=1 c=1 -> specificity = 11 */

UL OL LI.red {} /* a=0 b=1 c=3 -> specificity = 13 */

LI.red.level {} /* a=0 b=2 c=1 -> specificity = 21 */

#x34y {} /* a=1 b=0 c=0 -> specificity = 100 */

6、级联

QT样式表可以设置在应用程序、父组件、子组件上。通过合并组件的祖先(父亲、祖父等)可以获取任意组件的有效样式表,以及设置在应用程序上的任何样式表。

冲突发生时,不论冲突规则的特性如何,组件自己的样式表总是优先于任何继承而来的样式表。同样,父组件的样式表优先于祖父组件的样式表。

这样的结果是,在一个组件上设置样式规则会自动获得比祖先组件的样式表或是应用程序的样式表指定的其他规则更高的优先级。例如,首先在应用程序设置样式表

qApp->setStyleSheet("QPushButton { color: white }");

然后,在QPushButton对象设置一个样式表

myPushButton->setStyleSheet("* { color: blue }");

QPushButton的样式表会强制QPushButton(及其任何子组件)显示蓝色文本,尽管应用程序范围的样式表提供了更具体的规则。

下列写法也会得到相同的结果:

myPushButton->setStyleSheet("color: blue");

但如果QPushButton有子组件,样式表不会对子组件有效果。

样式表级联是一个复杂的主题,更详细的内容请参考CSS2规范。QT目前没有实现。

7、继承

在经典的CSS中,当元素的字体和颜色没有显示设置时,会自动从父组件继承。使用QT样式表时,一个组件不会自动继承父组件设置的字体和颜色。例如,一个QGroupBox包含一个QPushButton:

qApp->setStyleSheet("QGroupBox { color: red; } ");

QPushButton并没有显示设置颜色,因此并不是继承父组件QGroupBox的颜色,而是拥有系统的颜色。如果要设置QGroupBox及其子组件的颜色,如下:

qApp->setStyleSheet("QGroupBox, QGroupBox * { color: red; }");

相比之下,使用QWidget::setFont() 和 QWidget::setPalette()为子组件设置字体和画板。

8、C++命名空间内部的组件

类型选择器特殊类型的组件的样式定制。例如:

  1. class MyPushButton : public QPushButton {
  2. // ...
  3. };
  4. // ...
  5. qApp->setStyleSheet("MyPushButton { background: yellow; }");

QT样式表使用组件的QObject::className() 确定何时应选择器。当自定义组件在命名空间内部时,QObject::className()会返回<namespace>::<classname>。这会与子控件选择器的语法产生冲突。为了解决这个问题,当在命名空间内使用组件的类型选择器时,必须使用“--”代替“::”。

  1. namespace ns {
  2. class MyPushButton : public QPushButton {
  3. // ...
  4. };
  5. }
  6. // ...
  7. qApp->setStyleSheet("ns--MyPushButton { background: yellow; }");

9、设置QObject属性

从QT4.3开始,任何可被设计的Q_PROPERTY都可以使用qproperty-<property name>语法设置。

  1. MyLabel { qproperty-pixmap: url(pixmap.png); }
  2. MyGroupBox { qproperty-titleColor: rgb(100, 200, 100); }
  3. QPushButton { qproperty-iconSize: 20px 20px; }

如果属性引用了Q_ENUMS声明的枚举,应该通过名字引用常量值,而不是数字。

三、QT设计器中的样式表

Qt Designer是一款预览样式表的优秀工具,右击设计器中的任何组件,选择Change styleSheet...可以设置样式表。

QT4.2开始,Qt Designer包含了一个样式表语法高亮器和验证器。如果语法合法或非法,验证器可以在Edit Style Sheet对话框的左下角指示。

当点击Ok或Apply按钮时,Qt Designer会自动使用新样式表显示组件。

四、使用样式表定制QT组件

当使用样式表时,每个组件会被当作有四个同心矩形:空白矩形、边界矩形、衬底矩形、内容矩形的盒子。

1、盒子模型

四个同心矩形如下所示:

margin, border-width,padding属性默认都是0。此时四个矩形完全相同。

可以使用background-image属性指定组件的背景。默认,background-image只会在边界矩形内被绘制,使用background-clip属性可以修改。使用background-repeat属性和background-origin属性来控制背景图片的重复和来源。

background-image属性不会缩放组件的大小。为了提供随着组件大小缩放的皮肤或背景,必须使用border-image属性。由于border-image属性提供了一个可选择的背景,当指定border-image属性时,不会要求指定background-image属性。当background-image属性和border-image属性都被指定时,border-image属性会被绘制在background-image属性之上。

此外,image属性可以用于在border-image属性上绘制一幅图像。当组件的大小与image的大小不匹配时,指定的image不会伸缩,对齐方式可以使用image-position属性设置。与background-image属性和border-image属性不同,image属性可以指定SVG,使image根据组件的大小自动缩放。

渲染规则的步骤如下:

A、为整个渲染操作设置clip(border-radius)

B、绘制背景(background-image)

C、绘制边界(border-image,border)

D、绘制覆盖图像(image)

2、子控件

一个组件可以看作一颗子控件树。例如QComboBox绘制下拉按钮子控件,下拉按钮子控件绘制了向下箭头子控件。

子控件享有父子关系。QComboBox中,向下箭头的父亲是下拉按钮,下拉按钮的父亲的QComboBox组件本身。子控件可以使用subcontrol-position属性和subcontrol-origin属性定位在父组件内。

一旦定位,子控件就可以使用盒子模型定制样式。

注意,像QComboBox和QScrollBar这样复杂的组件,如果有一个属性或是子控件选择器被定制,所有其他的属性或是子控件选择器也要必须被定制。

五、QT样式表参考

QT样式表支持多种的属性、状态和子控件,使得定制组件的外观成为可能。

1、组件

以下组件都可以使用样式表定制样式。

 

 

 

 

 

 

 

 

六、QT样式表实例

1、样式表的使用

A、定制前景色和背景色

设置应用程序中的所有QLineEdit组件的背景色为黄色

qApp->setStyleSheet("QLineEdit { background-color: yellow }");

如果只想要属性用于具体某个对话框的QLineEdit及子类组件。

myDialog->setStyleSheet("QLineEdit { background-color: yellow }");

如果只想将属性用于某个具体的QLineEdit组件,可以使用QObject::setObjectName()和ID选择器。

myDialog->setStyleSheet("QLineEdit#nameEdit { background-color: yellow }");

可以直接设置QLineEdit组件的background-color属性,忽略选择器

nameEdit->setStyleSheet("background-color: yellow");

为了确保对比效果,应该指定文本合适的颜色

nameEdit->setStyleSheet("color: blue; background-color: yellow");

修改选中文本的颜色如下:

  1. nameEdit->setStyleSheet("color: blue;"
  2. "background-color: yellow;"
  3. "selection-color: yellow;"
  4. "selection-background-color: blue;");

B、使用动态属性定制样式

为了提示用户字段是必填的,对这些字段使用黄色作为背景色。要使用QT样式表是现实很容易的。首先,应该使用应用程序的样式表:

*[mandatoryField="true"] { background-color: yellow }

mandatoryField字段设置为true的组件的背景色为黄色。

对于每个必备字段组件,我们匆忙中简单创建了一个mandatoryField属性并设置为true。

  1. QLineEdit *nameEdit = new QLineEdit(this);
  2. nameEdit->setProperty("mandatoryField", true);
  3. QLineEdit *emailEdit = new QLineEdit(this);
  4. emailEdit->setProperty("mandatoryField", true);
  5. QSpinBox *ageSpinBox = new QSpinBox(this);
  6. ageSpinBox->setProperty("mandatoryField", true);

C、使用盒子模型定制QPushButton

本节我们展示如何创建一个红色的按钮。

  1. QPushButton#evilButton
  2. {
  3. background-color: red;
  4. border-style: outset;
  5. border-width: 2px;
  6. border-radius: 10px;
  7. border-color: beige;
  8. font: bold 14px;
  9. min-width: 10em;
  10. padding: 6px;
  11. }
  12. QPushButton#evilButton:pressed
  13. {
  14. background-color: rgb(224, 0, 0);
  15. border-style: inset;
  16. }

D、定制按钮菜单指示器子控件

子控件可以访问组件的子元素。例如,按钮会使用QPushButton::setMenu()关联菜单与菜单指示器。定制红色按钮的菜单指示器如下:

  1. QPushButton#evilButton::menu-indicator
  2. {
  3. image: url(myindicator.png);
  4. }

默认,菜单指示器定位在衬底区域的右下角。通过改变subcontrol-position、subcontrol-origin属性可以定位指示器。

  1. QPushButton::menu-indicator
  2. {
  3. image: url(myindicator.png);
  4. subcontrol-position: right center;
  5. subcontrol-origin: padding;
  6. left: -2px;
  7. }

Myindicator.png的位置在按钮衬底区域的右中心。

E、复杂选择器示例

设置应用程序样式表中QLineEdit文本为红色。

QLineEdit { color: red }

然而,想要设置一个只读QLineEdit的文本颜色为灰色如下:

  1. QLineEdit { color: red }
  2. QLineEdit[readOnly="true"] { color: gray }

某些情况下,如果要求注册表单中的所有QLineEdit为棕色。

  1. QLineEdit { color: red }
  2. QLineEdit[readOnly="true"] { color: gray }
  3. #registrationDialog QLineEdit { color: brown }

如果要求所有对话框中的QLineEdit为棕色。

  1. QLineEdit { color: red }
  2. QLineEdit[readOnly="true"] { color: gray }
  3. QDialog QLineEdit { color: brown }

本文福利,费领取Qt开发学习资料包、技术视频,内容包括(Qt实战项目,C++语言基础,C++设计模式,Qt编程入门,QT信号与槽机制,QT界面开发-图像绘制,QT网络,QT数据库编程,QT项目实战,QSS,OpenCV,Quick模块,面试题等等)↓↓↓↓↓↓见下面↓↓文章底部点击费领取↓↓

2、定制特殊组件

本节提供使用样式表定制特定组件的实例。

(1)、定制QAbstractScrollArea

任何QAbstractScrollArea组件(项视图、QTextEdit、QTextBrowser)的背景都可以使用bakcground属性设置。例如,设置带有滚动条滚动的背景图属性如下:

  1. QTextEdit, QListView
  2. {
  3. background-color: white;
  4. background-image: url(draft.png);
  5. background-attachment: scroll;
  6. }

如果设置background-image属性在视口中固定。

  1. QTextEdit, QListView
  2. {
  3. background-color: white;
  4. background-image: url(draft.png);
  5. background-attachment: fixed;
  6. }

(2)、定制QCheckBox

进行QCheckBox样式设置与QRadioButton样式设置相同。主要区别在于三态的QCheckBox有一个模糊态。

  1. QCheckBox
  2. {
  3. spacing: 5px;
  4. }
  5. QCheckBox::indicator
  6. {
  7. width: 13px;
  8. height: 13px;
  9. }
  10. QCheckBox::indicator:unchecked
  11. {
  12. image: url(:/images/checkbox_unchecked.png);
  13. }
  14. QCheckBox::indicator:unchecked:hover
  15. {
  16. image: url(:/images/checkbox_unchecked_hover.png);
  17. }
  18. QCheckBox::indicator:unchecked:pressed
  19. {
  20. image: url(:/images/checkbox_unchecked_pressed.png);
  21. }
  22. QCheckBox::indicator:checked
  23. {
  24. image: url(:/images/checkbox_checked.png);
  25. }
  26. QCheckBox::indicator:checked:hover
  27. {
  28. image: url(:/images/checkbox_checked_hover.png);
  29. }
  30. QCheckBox::indicator:checked:pressed
  31. {
  32. image: url(:/images/checkbox_checked_pressed.png);
  33. }
  34. QCheckBox::indicator:indeterminate:hover
  35. {
  36. image: url(:/images/checkbox_indeterminate_hover.png);
  37. }
  38. QCheckBox::indicator:indeterminate:pressed {
  39. image: url(:/images/checkbox_indeterminate_pressed.png);
  40. }

(3)、定制组合框QComboBox

  1. QComboBox {
  2. border: 1px solid gray;
  3. border-radius: 3px;
  4. padding: 1px 18px 1px 3px;
  5. min-width: 6em;
  6. }
  7. QComboBox:editable {
  8. background: white;
  9. }
  10. QComboBox:!editable, QComboBox::drop-down:editable {
  11. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  12. stop: 0 #E1E1E1, stop: 0.4 #DDDDDD,
  13. stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3);
  14. }
  15. /* QComboBox gets the "on" state when the popup is open */
  16. QComboBox:!editable:on, QComboBox::drop-down:editable:on {
  17. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  18. stop: 0 #D3D3D3, stop: 0.4 #D8D8D8,
  19. stop: 0.5 #DDDDDD, stop: 1.0 #E1E1E1);
  20. }
  21. QComboBox:on { /* shift the text when the popup opens */
  22. padding-top: 3px;
  23. padding-left: 4px;
  24. }
  25. QComboBox::drop-down {
  26. subcontrol-origin: padding;
  27. subcontrol-position: top right;
  28. width: 15px;
  29. border-left-width: 1px;
  30. border-left-color: darkgray;
  31. border-left-style: solid; /* just a single line */
  32. border-top-right-radius: 3px; /* same radius as the QComboBox */
  33. border-bottom-right-radius: 3px;
  34. }
  35. QComboBox::down-arrow {
  36. image: url(/usr/share/icons/crystalsvg/16x16/actions/1downarrow.png);
  37. }
  38. QComboBox::down-arrow:on { /* shift the arrow when popup is open */
  39. top: 1px;
  40. left: 1px;
  41. }

组合框的弹出菜单是QAbstractItemView,使用后代选择器进行样式设置。

  1. QComboBox QAbstractItemView {
  2. border: 2px solid darkgray;
  3. selection-background-color: lightgray;
  4. }

(4)、定制QDockWidget

QDockWidget的标题栏和按钮可以按如下进行样式设置。

  1. QDockWidget
  2. {
  3. border: 1px solid lightgray;
  4. titlebar-close-icon: url(close.png);
  5. titlebar-normal-icon: url(undock.png);
  6. }
  7. QDockWidget::title
  8. {
  9. text-align: left; /* align the text to the left */
  10. background: lightgray;
  11. padding-left: 5px;
  12. }
  13. QDockWidget::close-button, QDockWidget::float-button
  14. {
  15. border: 1px solid transparent;
  16. background: darkgray;
  17. padding: 0px;
  18. }
  19. QDockWidget::close-button:hover, QDockWidget::float-button:hover
  20. {
  21. background: gray;
  22. }
  23. QDockWidget::close-button:pressed, QDockWidget::float-button:pressed
  24. {
  25. padding: 1px -1px -1px 1px;
  26. }

如果要移动停靠组件按钮到左侧,可以使用如下样式表设置:

  1. QDockWidget
  2. {
  3. border: 1px solid lightgray;
  4. titlebar-close-icon: url(close.png);
  5. titlebar-normal-icon: url(float.png);
  6. }
  7. QDockWidget::title
  8. {
  9. text-align: left;
  10. background: lightgray;
  11. padding-left: 35px;
  12. }
  13. QDockWidget::close-button, QDockWidget::float-button
  14. {
  15. background: darkgray;
  16. padding: 0px;
  17. icon-size: 14px; /* maximum icon size */
  18. }
  19. QDockWidget::close-button:hover, QDockWidget::float-button:hover
  20. {
  21. background: gray;
  22. }
  23. QDockWidget::close-button:pressed, QDockWidget::float-button:pressed
  24. {
  25. padding: 1px -1px -1px 1px;
  26. }
  27. QDockWidget::close-button
  28. {
  29. subcontrol-position: top left;
  30. subcontrol-origin: margin;
  31. position: absolute;
  32. top: 0px; left: 0px; bottom: 0px;
  33. width: 14px;
  34. }
  35. QDockWidget::float-button
  36. {
  37. subcontrol-position: top left;
  38. subcontrol-origin: margin;
  39. position: absolute;
  40. top: 0px; left: 16px; bottom: 0px;
  41. width: 14px;
  42. }

(5)、定制QFrame

  1. QFrame, QLabel, QToolTip
  2. {
  3. border: 2px solid green;
  4. border-radius: 4px;
  5. padding: 2px;
  6. background-image: url(images/welcome.png);
  7. }

(6)、定制QGroupBox

  1. QGroupBox
  2. {
  3. background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  4. stop: 0 #E0E0E0, stop: 1 #FFFFFF);
  5. border: 2px solid gray;
  6. border-radius: 5px;
  7. margin-top: 1ex; /* leave space at the top for the title */
  8. }
  9. QGroupBox::title
  10. {
  11. subcontrol-origin: margin;
  12. subcontrol-position: top center; /* position at the top center */
  13. padding: 0 3px;
  14. background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  15. stop: 0 #FF0ECE, stop: 1 #FFFFFF);
  16. }
  17. QGroupBox::indicator
  18. {
  19. width: 13px;
  20. height: 13px;
  21. }
  22. QGroupBox::indicator:unchecked
  23. {
  24. image: url(:/images/checkbox_unchecked.png);
  25. }

(7)、定制QHeaderView

  1. QHeaderView::section
  2. {
  3. background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
  4. stop:0 #616161, stop: 0.5 #505050,
  5. stop: 0.6 #434343, stop:1 #656565);
  6. color: white;
  7. padding-left: 4px;
  8. border: 1px solid #6c6c6c;
  9. }
  10. QHeaderView::section:checked
  11. {
  12. background-color: red;
  13. }
  14. QHeaderView::down-arrow
  15. {
  16. image: url(down_arrow.png);
  17. }
  18. QHeaderView::up-arrow
  19. {
  20. image: url(up_arrow.png);
  21. }

(8)、定制QLineEdit

QLineEdit的框架使用盒子模型进行样式设置。

  1. QLineEdit
  2. {
  3. border: 2px solid gray;
  4. border-radius: 10px;
  5. padding: 0 8px;
  6. background: yellow;
  7. selection-background-color: darkgray;
  8. }

QLineEdit的密码字符使用QLineEdit::Password显示模式设置。

  1. QLineEdit[echoMode="2"]
  2. {
  3. lineedit-password-character: 9679;
  4. }

只读QLineEdit的背景可以如下修改:

  1. QLineEdit:read-only
  2. {
  3. background: lightblue;
  4. }

(9)、定制QListView

交替行背景颜色的样式设置如下:

  1. QListView
  2. {
  3. alternate-background-color: yellow;
  4. }

为了当鼠标悬停在数据项上时提供一个背景颜色,可以使用::item子控件。

  1. QListView
  2. {
  3. /* make the selection span the entire width of the view */
  4. show-decoration-selected: 1;
  5. }
  6. QListView::item:alternate
  7. {
  8. background: #EEEEEE;
  9. }
  10. QListView::item:selected
  11. {
  12. border: 1px solid #6a6ea9;
  13. }
  14. QListView::item:selected:!active
  15. {
  16. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  17. stop: 0 #ABAFE5, stop: 1 #8588B2);
  18. }
  19. QListView::item:selected:active
  20. {
  21. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  22. stop: 0 #6a6ea9, stop: 1 #888dd9);
  23. }
  24. QListView::item:hover
  25. {
  26. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  27. stop: 0 #FAFBFE, stop: 1 #DCDEF1);
  28. }

(10)、定制QMainWindow

QMainWindow的分隔符可以如下样式表进行样式设置。

  1. QMainWindow::separator
  2. {
  3. background: yellow;
  4. width: 10px; /* when vertical */
  5. height: 10px; /* when horizontal */
  6. }
  7. QMainWindow::separator:hover
  8. {
  9. background: red;
  10. }

(11)、定制QMenu

菜单的每个项使用::item子控件进行样式设置。

  1. QMenu
  2. {
  3. background-color: #ABABAB;
  4. border: 1px solid black;
  5. }
  6. QMenu::item
  7. {
  8. background-color: transparent;
  9. }
  10. QMenu::item:selected
  11. {
  12. background-color: #654321;
  13. }

更复杂的样式设置如下:

  1. QMenu
  2. {
  3. background-color: white;
  4. margin: 2px; /* some spacing around the menu */
  5. }
  6. QMenu::item
  7. {
  8. padding: 2px 25px 2px 20px;
  9. border: 1px solid transparent;
  10. }
  11. QMenu::item:selected
  12. {
  13. border-color: darkblue;
  14. background: rgba(100, 100, 100, 150);
  15. }
  16. QMenu::icon:checked
  17. { /* appearance of a 'checked' icon */
  18. background: gray;
  19. border: 1px inset gray;
  20. position: absolute;
  21. top: 1px;
  22. right: 1px;
  23. bottom: 1px;
  24. left: 1px;
  25. }
  26. QMenu::separator
  27. {
  28. height: 2px;
  29. background: lightblue;
  30. margin-left: 10px;
  31. margin-right: 5px;
  32. }
  33. QMenu::indicator
  34. {
  35. width: 13px;
  36. height: 13px;
  37. }
  38. QMenu::indicator:non-exclusive:unchecked
  39. {
  40. image: url(:/images/checkbox_unchecked.png);
  41. }
  42. QMenu::indicator:non-exclusive:unchecked:selected
  43. {
  44. image: url(:/images/checkbox_unchecked_hover.png);
  45. }
  46. QMenu::indicator:non-exclusive:checked
  47. {
  48. image: url(:/images/checkbox_checked.png);
  49. }
  50. QMenu::indicator:non-exclusive:checked:selected
  51. {
  52. image: url(:/images/checkbox_checked_hover.png);
  53. }
  54. QMenu::indicator:exclusive:unchecked
  55. {
  56. image: url(:/images/radiobutton_unchecked.png);
  57. }
  58. QMenu::indicator:exclusive:unchecked:selected
  59. {
  60. image: url(:/images/radiobutton_unchecked_hover.png);
  61. }
  62. QMenu::indicator:exclusive:checked
  63. {
  64. image: url(:/images/radiobutton_checked.png);
  65. }
  66. QMenu::indicator:exclusive:checked:selected
  67. {
  68. image: url(:/images/radiobutton_checked_hover.png);
  69. }

(12)、QMenuBar

  1. QMenuBar
  2. {
  3. background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
  4. stop:0 lightgray, stop:1 darkgray);
  5. }
  6. QMenuBar::item
  7. {
  8. spacing: 3px; /* spacing between menu bar items */
  9. padding: 1px 4px;
  10. background: transparent;
  11. border-radius: 4px;
  12. }
  13. QMenuBar::item:selected
  14. { /* when selected using mouse or keyboard */
  15. background: #a8a8a8;
  16. }
  17. QMenuBar::item:pressed
  18. {
  19. background: #888888;
  20. }

(13)、定制QProgressBar

QProgressBar的border、chunk、text-align可以使用样式表设置。然而,如果一个属性或子控件进行了样式设置,其他属性或子控件也要进行样式设置。

  1. QProgressBar
  2. {
  3. border: 2px solid grey;
  4. border-radius: 5px;
  5. text-align: center;
  6. }
  7. QProgressBar::chunk
  8. {
  9. background-color: #05B8CC;
  10. width: 20px;
  11. }

(14)、定制QPushButton

  1. QPushButton
  2. {
  3. border: 2px solid #8f8f91;
  4. border-radius: 6px;
  5. background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  6. stop: 0 #f6f7fa, stop: 1 #dadbde);
  7. min-width: 80px;
  8. }
  9. QPushButton:pressed
  10. {
  11. background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  12. stop: 0 #dadbde, stop: 1 #f6f7fa);
  13. }
  14. QPushButton:flat
  15. {
  16. border: none; /* no border for a flat push button */
  17. }
  18. QPushButton:default
  19. {
  20. border-color: navy; /* make the default button prominent */
  21. }

对于带菜单的按钮,使用::menu-indicator子控件:

  1. QPushButton:open
  2. { /* when the button has its menu open */
  3. background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  4. stop: 0 #dadbde, stop: 1 #f6f7fa);
  5. }
  6. QPushButton::menu-indicator
  7. {
  8. image: url(menu_indicator.png);
  9. subcontrol-origin: padding;
  10. subcontrol-position: bottom right;
  11. }
  12. QPushButton::menu-indicator:pressed, QPushButton::menu-indicator:open
  13. {
  14. position: relative;
  15. top: 2px; left: 2px; /* shift the arrow by 2 px */
  16. }

(15)、定制QRadioButton

  1. QRadioButton::indicator
  2. {
  3. width: 13px;
  4. height: 13px;
  5. }
  6. QRadioButton::indicator::unchecked
  7. {
  8. image: url(:/images/radiobutton_unchecked.png);
  9. }
  10. QRadioButton::indicator:unchecked:hover
  11. {
  12. image: url(:/images/radiobutton_unchecked_hover.png);
  13. }
  14. QRadioButton::indicator:unchecked:pressed
  15. {
  16. image: url(:/images/radiobutton_unchecked_pressed.png);
  17. }
  18. QRadioButton::indicator::checked
  19. {
  20. image: url(:/images/radiobutton_checked.png);
  21. }
  22. QRadioButton::indicator:checked:hover
  23. {
  24. image: url(:/images/radiobutton_checked_hover.png);
  25. }
  26. QRadioButton::indicator:checked:pressed
  27. {
  28. image: url(:/images/radiobutton_checked_pressed.png);
  29. }

(16)、定制QScrollBar

QScrollBar使用子控件handle、add-line、sub-line等进行样式设置。注意,如果有一个属性或子控件进行了样式定制,所有其他属性或子控件也必须要进行样式设置。

  1. QScrollBar:horizontal
  2. {
  3. border: 2px solid grey;
  4. background: #32CC99;
  5. height: 15px;
  6. margin: 0px 20px 0 20px;
  7. }
  8. QScrollBar::handle:horizontal
  9. {
  10. background: white;
  11. min-width: 20px;
  12. }
  13. QScrollBar::add-line:horizontal
  14. {
  15. border: 2px solid grey;
  16. background: #32CC99;
  17. width: 20px;
  18. subcontrol-position: right;
  19. subcontrol-origin: margin;
  20. }
  21. QScrollBar::sub-line:horizontal
  22. {
  23. border: 2px solid grey;
  24. background: #32CC99;
  25. width: 20px;
  26. subcontrol-position: left;
  27. subcontrol-origin: margin;
  28. }

left-arrow和right-arrow有带白色背景的粗体灰色边框。

  1. QScrollBar:left-arrow:horizontal, QScrollBar::right-arrow:horizontal
  2. {
  3. border: 2px solid grey;
  4. width: 3px;
  5. height: 3px;
  6. background: white;
  7. }
  8. QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal
  9. {
  10. background: none;
  11. }

如果想要滚动条的滚动按钮箱MacOS一样放在一起,可以使用如下样式表:

  1. QScrollBar:horizontal
  2. {
  3. border: 2px solid green;
  4. background: cyan;
  5. height: 15px;
  6. margin: 0px 40px 0 0px;
  7. }
  8. QScrollBar::handle:horizontal
  9. {
  10. background: gray;
  11. min-width: 20px;
  12. }
  13. QScrollBar::add-line:horizontal
  14. {
  15. background: blue;
  16. width: 16px;
  17. subcontrol-position: right;
  18. subcontrol-origin: margin;
  19. border: 2px solid black;
  20. }
  21. QScrollBar::sub-line:horizontal
  22. {
  23. background: magenta;
  24. width: 16px;
  25. subcontrol-position: top right;
  26. subcontrol-origin: margin;
  27. border: 2px solid black;
  28. position: absolute;
  29. right: 20px;
  30. }
  31. QScrollBar:left-arrow:horizontal, QScrollBar::right-arrow:horizontal
  32. {
  33. width: 3px;
  34. height: 3px;
  35. background: pink;
  36. }
  37. QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal
  38. {
  39. background: none;
  40. }

使用样式表设置垂直滚动条:

  1. QScrollBar:vertical
  2. {
  3. border: 2px solid grey;
  4. background: #32CC99;
  5. width: 15px;
  6. margin: 22px 0 22px 0;
  7. }
  8. QScrollBar::handle:vertical
  9. {
  10. background: white;
  11. min-height: 20px;
  12. }
  13. QScrollBar::add-line:vertical
  14. {
  15. border: 2px solid grey;
  16. background: #32CC99;
  17. height: 20px;
  18. subcontrol-position: bottom;
  19. subcontrol-origin: margin;
  20. }
  21. QScrollBar::sub-line:vertical
  22. {
  23. border: 2px solid grey;
  24. background: #32CC99;
  25. height: 20px;
  26. subcontrol-position: top;
  27. subcontrol-origin: margin;
  28. }
  29. QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical
  30. {
  31. border: 2px solid grey;
  32. width: 3px;
  33. height: 3px;
  34. background: white;
  35. }
  36. QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical
  37. {
  38. background: none;
  39. }

(17)、定制QSizeGrip

  1. QSizeGrip
  2. {
  3. image: url(:/images/sizegrip.png);
  4. width: 16px;
  5. height: 16px;
  6. }

(18)、定制QSlider

  1. QSlider::groove:horizontal
  2. {
  3. border: 1px solid #999999;
  4. height: 8px;
  5. background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #B1B1B1, stop:1 #c4c4c4);
  6. margin: 2px 0;
  7. }
  8. QSlider::handle:horizontal
  9. {
  10. background: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #b4b4b4, stop:1 #8f8f8f);
  11. border: 1px solid #5c5c5c;
  12. width: 18px;
  13. margin: -2px 0;
  14. border-radius: 3px;
  15. }

如果想要改变滑块移动前后滑块的颜色,可以使用add-page、sub-page子控件。

  1. QSlider::groove:vertical
  2. {
  3. background: red;
  4. position: absolute;
  5. left: 4px; right: 4px;
  6. }
  7. QSlider::handle:vertical
  8. {
  9. height: 10px;
  10. background: green;
  11. margin: 0 -4px; /* expand outside the groove */
  12. }
  13. QSlider::add-page:vertical
  14. {
  15. background: white;
  16. }
  17. QSlider::sub-page:vertical
  18. {
  19. background: pink;
  20. }

(19)、定制QSpinBox

  1. QSpinBox
  2. {
  3. padding-right: 15px; /* make room for the arrows */
  4. border-image: url(:/images/frame.png) 4;
  5. border-width: 3;
  6. }
  7. QSpinBox::up-button
  8. {
  9. subcontrol-origin: border;
  10. subcontrol-position: top right; /* position at the top right corner */
  11. width: 16px; /* 16 + 2*1px border-width = 15px padding + 3px parent border */
  12. border-image: url(:/images/spinup.png) 1;
  13. border-width: 1px;
  14. }
  15. QSpinBox::up-button:hover
  16. {
  17. border-image: url(:/images/spinup_hover.png) 1;
  18. }
  19. QSpinBox::up-button:pressed
  20. {
  21. border-image: url(:/images/spinup_pressed.png) 1;
  22. }
  23. QSpinBox::up-arrow
  24. {
  25. image: url(:/images/up_arrow.png);
  26. width: 7px;
  27. height: 7px;
  28. }
  29. QSpinBox::up-arrow:disabled, QSpinBox::up-arrow:off
  30. { /* off state when value is max */
  31. image: url(:/images/up_arrow_disabled.png);
  32. }
  33. QSpinBox::down-button
  34. {
  35. subcontrol-origin: border;
  36. subcontrol-position: bottom right; /* position at bottom right corner */
  37. width: 16px;
  38. border-image: url(:/images/spindown.png) 1;
  39. border-width: 1px;
  40. border-top-width: 0;
  41. }
  42. QSpinBox::down-button:hover
  43. {
  44. border-image: url(:/images/spindown_hover.png) 1;
  45. }
  46. QSpinBox::down-button:pressed
  47. {
  48. border-image: url(:/images/spindown_pressed.png) 1;
  49. }
  50. QSpinBox::down-arrow
  51. {
  52. image: url(:/images/down_arrow.png);
  53. width: 7px;
  54. height: 7px;
  55. }
  56. QSpinBox::down-arrow:disabled,
  57. QSpinBox::down-arrow:off
  58. { /* off state when value in min */
  59. image: url(:/images/down_arrow_disabled.png);
  60. }

(20)、定制QSplitter

QSplitter继承自QFrame,因此必须像QFrame一样进行样式设置。

  1. QSplitter::handle
  2. {
  3. image: url(images/splitter.png);
  4. }
  5. QSplitter::handle:horizontal
  6. {
  7. width: 2px;
  8. }
  9. QSplitter::handle:vertical
  10. {
  11. height: 2px;
  12. }
  13. QSplitter::handle:pressed
  14. {
  15. url(images/splitter_pressed.png);
  16. }

(21)、定制QStatusBar

状态栏的背景色和状态栏内项的边框如下:

  1. QStatusBar
  2. {
  3. background: brown;
  4. }
  5. QStatusBar::item
  6. {
  7. border: 1px solid red;
  8. border-radius: 3px;
  9. }

注意,添加到状态栏中的组件可以使用后代声明进行样式设置。

  1. QStatusBar QLabel
  2. {
  3. border: 3px solid white;
  4. }

(22)、QTabWidget、QTabBar

  1. QTabWidget::pane { /* The tab widget frame */
  2. border-top: 2px solid #C2C7CB;
  3. }
  4. QTabWidget::tab-bar {
  5. left: 5px; /* move to the right by 5px */
  6. }
  7. /* Style the tab using the tab sub-control. Note that
  8. it reads QTabBar _not_ QTabWidget */
  9. QTabBar::tab
  10. {
  11. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  12. stop: 0 #E1E1E1, stop: 0.4 #DDDDDD,
  13. stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3);
  14. border: 2px solid #C4C4C3;
  15. border-bottom-color: #C2C7CB; /* same as the pane color */
  16. border-top-left-radius: 4px;
  17. border-top-right-radius: 4px;
  18. min-width: 8ex;
  19. padding: 2px;
  20. }
  21. QTabBar::tab:selected, QTabBar::tab:hover {
  22. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  23. stop: 0 #fafafa, stop: 0.4 #f4f4f4,
  24. stop: 0.5 #e7e7e7, stop: 1.0 #fafafa);
  25. }
  26. QTabBar::tab:selected {
  27. border-color: #9B9B9B;
  28. border-bottom-color: #C2C7CB; /* same as pane color */
  29. }
  30. QTabBar::tab:!selected {
  31. margin-top: 2px; /* make non-selected tabs look smaller */
  32. }
  33. QTabWidget::pane { /* The tab widget frame */
  34. border-top: 2px solid #C2C7CB;
  35. }
  36. QTabWidget::tab-bar {
  37. left: 5px; /* move to the right by 5px */
  38. }
  39. /* Style the tab using the tab sub-control. Note that
  40. it reads QTabBar _not_ QTabWidget */
  41. QTabBar::tab {
  42. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  43. stop: 0 #E1E1E1, stop: 0.4 #DDDDDD,
  44. stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3);
  45. border: 2px solid #C4C4C3;
  46. border-bottom-color: #C2C7CB; /* same as the pane color */
  47. border-top-left-radius: 4px;
  48. border-top-right-radius: 4px;
  49. min-width: 8ex;
  50. padding: 2px;
  51. }
  52. QTabBar::tab:selected, QTabBar::tab:hover {
  53. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  54. stop: 0 #fafafa, stop: 0.4 #f4f4f4,
  55. stop: 0.5 #e7e7e7, stop: 1.0 #fafafa);
  56. }
  57. QTabBar::tab:selected {
  58. border-color: #9B9B9B;
  59. border-bottom-color: #C2C7CB; /* same as pane color */
  60. }
  61. QTabBar::tab:!selected {
  62. margin-top: 2px; /* make non-selected tabs look smaller */
  63. }
  64. /* make use of negative margins for overlapping tabs */
  65. QTabBar::tab:selected {
  66. /* expand/overlap to the left and right by 4px */
  67. margin-left: -4px;
  68. margin-right: -4px;
  69. }
  70. QTabBar::tab:first:selected {
  71. margin-left: 0;
  72. }
  73. QTabBar::tab:last:selected {
  74. margin-right: 0;
  75. }
  76. QTabBar::tab:only-one {
  77. margin: 0; /* if there is only one tab, we don't want overlapping margins */
  78. }
  79. QTabWidget::pane { /* The tab widget frame */
  80. border-top: 2px solid #C2C7CB;
  81. position: absolute;
  82. top: -0.5em;
  83. }
  84. QTabWidget::tab-bar {
  85. alignment: center;
  86. }
  87. /* Style the tab using the tab sub-control. Note that
  88. it reads QTabBar _not_ QTabWidget */
  89. QTabBar::tab {
  90. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  91. stop: 0 #E1E1E1, stop: 0.4 #DDDDDD,
  92. stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3);
  93. border: 2px solid #C4C4C3;
  94. border-bottom-color: #C2C7CB; /* same as the pane color */
  95. border-top-left-radius: 4px;
  96. border-top-right-radius: 4px;
  97. min-width: 8ex;
  98. padding: 2px;
  99. }
  100. QTabBar::tab:selected, QTabBar::tab:hover {
  101. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  102. stop: 0 #fafafa, stop: 0.4 #f4f4f4,
  103. stop: 0.5 #e7e7e7, stop: 1.0 #fafafa);
  104. }
  105. QTabBar::tab:selected {
  106. border-color: #9B9B9B;
  107. border-bottom-color: #C2C7CB; /* same as pane color */
  108. }tear指示器和滚动按钮可以被样式设置

tear指示器和滚动按钮可以被样式设置

  1. QTabBar::tear {
  2. image: url(tear_indicator.png);
  3. }
  4. QTabBar::scroller { /* the width of the scroll buttons */
  5. width: 20px;
  6. }
  7. QTabBar QToolButton { /* the scroll buttons are tool buttons */
  8. border-image: url(scrollbutton.png) 2;
  9. border-width: 2px;
  10. }
  11. QTabBar QToolButton::right-arrow { /* the arrow mark in the tool buttons */
  12. image: url(rightarrow.png);
  13. }
  14. QTabBar QToolButton::left-arrow {
  15. image: url(leftarrow.png);
  16. }

QT4.6版本以后,关闭按钮设置如下

  1. QTabBar::close-button
  2. {
  3. image: url(close.png)
  4. subcontrol-position: left;
  5. }
  6. QTabBar::close-button:hover
  7. {
  8. image: url(close-hover.png)
  9. }

(23)、定制QTableView

假设想要QTableView的背景色为白色,选中项颜色为粉色

  1. QTableView
  2. {
  3. selection-background-color: qlineargradient(x1: 0, y1: 0, x2: 0.5, y2: 0.5,
  4. stop: 0 #FF92BB, stop: 1 white);
  5. }
  6. QTableView QTableCornerButton::section
  7. {
  8. background: red;
  9. border: 2px outset red;
  10. }

(24)、定制QToolBar

  1. QToolBar
  2. {
  3. background: red;
  4. spacing: 3px; /* spacing between items in the tool bar */
  5. }
  6. QToolBar::handle
  7. {
  8. image: url(handle.png);
  9. }

(25)、定制QToolBox

  1. QToolBox::tab
  2. {
  3. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  4. stop: 0 #E1E1E1, stop: 0.4 #DDDDDD,
  5. stop: 0.5 #D8D8D8, stop: 1.0 #D3D3D3);
  6. border-radius: 5px;
  7. color: darkgray;
  8. }
  9. QToolBox::tab:selected
  10. { /* italicize selected tabs */
  11. font: italic;
  12. color: white;
  13. }

(26)、定制QToolButton

QToolButton有三种类型:

A、QToolButton无菜单,QToolButton像QPushButton进行样式设置

B、QToolButton有菜单,并且设置QToolButton::popupMode为QToolButton::DelayedPopup或QToolButton::InstantPopup。QToolButton像带菜单的QPushButton进行样式设置

C、QToolButton设置QToolButton::popupMode为QToolButton::MenuButtonPopup。样式设置如下:

  1. QToolButton { /* all types of tool button */
  2. border: 2px solid #8f8f91;
  3. border-radius: 6px;
  4. background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  5. stop: 0 #f6f7fa, stop: 1 #dadbde);
  6. }
  7. QToolButton[popupMode="1"] { /* only for MenuButtonPopup */
  8. padding-right: 20px; /* make way for the popup button */
  9. }
  10. QToolButton:pressed {
  11. background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
  12. stop: 0 #dadbde, stop: 1 #f6f7fa);
  13. }
  14. /* the subcontrols below are used only in the MenuButtonPopup mode */
  15. QToolButton::menu-button {
  16. border: 2px solid gray;
  17. border-top-right-radius: 6px;
  18. border-bottom-right-radius: 6px;
  19. /* 16px width + 4px for border = 20px allocated above */
  20. width: 16px;
  21. }
  22. QToolButton::menu-arrow {
  23. image: url(downarrow.png);
  24. }
  25. QToolButton::menu-arrow:open {
  26. top: 1px; left: 1px; /* shift it a bit */
  27. }

(27)、定制QToolTip

  1. QToolTip
  2. {
  3. border: 2px solid darkkhaki;
  4. padding: 5px;
  5. border-radius: 3px;
  6. opacity: 200;
  7. }

(28)、定制QTreeView

交替行的背景色设置如下:

  1. QTreeView
  2. {
  3. alternate-background-color: yellow;
  4. }

当鼠标悬停在数据项上时,使用::item子控件提供特定的背景色:

  1. QTreeView {
  2. show-decoration-selected: 1;
  3. }
  4. QTreeView::item {
  5. border: 1px solid #d9d9d9;
  6. border-top-color: transparent;
  7. border-bottom-color: transparent;
  8. }
  9. QTreeView::item:hover {
  10. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #e7effd, stop: 1 #cbdaf1);
  11. border: 1px solid #bfcde4;
  12. }
  13. QTreeView::item:selected {
  14. border: 1px solid #567dbc;
  15. }
  16. QTreeView::item:selected:active{
  17. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #6ea1f1, stop: 1 #567dbc);
  18. }
  19. QTreeView::item:selected:!active {
  20. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #6b9be8, stop: 1 #577fbf);
  21. }

QTreeView的分支样式表设置如下:

  1. QTreeView::branch {
  2. background: palette(base);
  3. }
  4. QTreeView::branch:has-siblings:!adjoins-item {
  5. background: cyan;
  6. }
  7. QTreeView::branch:has-siblings:adjoins-item {
  8. background: red;
  9. }
  10. QTreeView::branch:!has-children:!has-siblings:adjoins-item {
  11. background: blue;
  12. }
  13. QTreeView::branch:closed:has-children:has-siblings {
  14. background: pink;
  15. }
  16. QTreeView::branch:has-children:!has-siblings:closed {
  17. background: gray;
  18. }
  19. QTreeView::branch:open:has-children:has-siblings {
  20. background: magenta;
  21. }
  22. QTreeView::branch:open:has-children:!has-siblings {
  23. background: green;
  24. }

上图样式表设置如下:

  1. QTreeView::branch:has-siblings:!adjoins-item {
  2. border-image: url(vline.png) 0;
  3. }
  4. QTreeView::branch:has-siblings:adjoins-item {
  5. border-image: url(branch-more.png) 0;
  6. }
  7. QTreeView::branch:!has-children:!has-siblings:adjoins-item {
  8. border-image: url(branch-end.png) 0;
  9. }
  10. QTreeView::branch:has-children:!has-siblings:closed,
  11. QTreeView::branch:closed:has-children:has-siblings {
  12. border-image: none;
  13. image: url(branch-closed.png);
  14. }
  15. QTreeView::branch:open:has-children:!has-siblings,
  16. QTreeView::branch:open:has-children:has-siblings {
  17. border-image: none;
  18. image: url(branch-open.png);
  19. }

3、常见错误

当对QPushButton进行样式设置时,经常想要使用image作为按钮的图像。通常使用background-image属性,但这样有很多缺陷:例如,背景会隐藏显示在按钮装饰后面。此外,如果按钮大小改变,整个背景会被缩放,这样看起来会不太好。

由于border-image属性总是显示图像,使用使用border-image属性会更好,border-image属性对于按钮的缩放有特殊的设置。

  1. QPushButton
  2. {
  3. color: grey;
  4. border-image: url(/home/kamlie/code/button.png) 3 10 3 10;
  5. border-top: 3px transparent;
  6. border-bottom: 3px transparent;
  7. border-right: 10px transparent;
  8. border-left: 10px transparent;
  9. }

以上样式表会产生的按钮如下:

url后的数字分别是图像的顶、右、底、左。这些尺寸相当于边框,大小改变时不会被缩放。无论何时改变按钮大小,图像的中部会在两个方向上缩放,而样式表中指定的图像不会这样。这会使按钮的边框看起来更自然。

本文福利,费领取Qt开发学习资料包、技术视频,内容包括(Qt实战项目,C++语言基础,C++设计模式,Qt编程入门,QT信号与槽机制,QT界面开发-图像绘制,QT网络,QT数据库编程,QT项目实战,QSS,OpenCV,Quick模块,面试题等等)↓↓↓↓↓↓见下面↓↓文章底部点击费领取↓↓

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/613805
推荐阅读
相关标签
  

闽ICP备14008679号