Qss
Qss的写法参考css
即可。
网站推荐:
Qt Style Sheets Reference | Qt 4.8
书籍推荐:
《Qt样式葵花宝典》提取码:nod5
工具推荐:
Qss加载的常规操作
- 在资源文件夹中添加
style.qss
的文件
- 以文件IO的方式读取并设置即可。
- 读取的代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| void Widget::InitStyle(int i) { m_LCD_Hour->setStyleSheet(" font: 18px black;"); if(i != 0) { QFile file(QString(":/Assert/qss/style%1.qss").arg(i)); file.open(QFile::ReadOnly); this->setStyleSheet(file.readAll()); file.close(); return; }
QFile file(QString(":/Assert/qss/main.qss")); file.open(QFile::ReadOnly); this->setStyleSheet(file.readAll()); file.close(); }
|
感兴趣的朋友可以看看我整理的一些Qt小项目常用的一些代码:[【Qt】常用基础代码汇总(随时更新)_欧恩意的博客-CSDN博客_qt代码整理]https://blog.csdn.net/Fuel_Ming/article/details/122830341)
选择器
一般情况下,在ui文件中的控件有效,而在代码中声明的则无效,因为Qt是根据objectName
来识别的,所以自己声明的控件需要设置对象名。
1
| m_btn->setObjectName("BtnOK");
|
在QSS
文件中:
1 2 3 4 5 6 7
| QPushButton#BtnOK{ color:white; background-color:rgb(0,112,210); } QPushButton#BtnOK::hover{ background-color: rgb(0,134,252); }
|
通用选择器
即 *
表示的css对象。作用于所有的界面控件
类型选择器
- 作用于自己及子类
类名
(Qt类)作为选择器,作用于其自身和他所有的子类
1 2 3
| QFrame { background: gray; }
|
使用了类型选择器 QFrame
,所以 QFrame 和它的子类 QLable
,QLCDNumber
,QTableWidget
等的背景会是灰色的,QPushButton
不是 QFrame
的子类,所以不受影响。在Qt的类图或者帮助手册中可以看到一个Qt类的子类和父类。
- 只作用于自己
即 . + 类名
的形式。作用对象只有它自己。子类不受影响。
1 2 3 4
| QWidget *window = new QWidget(); window->setStylesheet(".QWidget { " "color:red;" "}");
|
ID选择器
# + objectname
作为选择器。只作用于此 objectname
的对象(多个对象可以设置同一个 objectname
,但不推荐这么写)。
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| QPushButton *btn = new QPushButton;
btn->setObjectName("openButton");
btn->setStylesheet("#openButton { " "color:red;" "}");
btn->setStylesheet("QPushButton#openButton { " "color:red;" "}");
|
属性选择器
[属性 = 值]
的形式设置样式。需要通过object->property()
接口设置Qt控件的属性值(Dynamic Properties)。
1 2 3 4 5
| app.setStyleSheet(".QWidget { background: gray; }" "QPushButton[level=\"dangerous\"] { background: magenta; }"); openButton->setProperty("level", "dangerous"); closeButton->setProperty("level", "dangerous");
|
包含选择器
也就是对控件内的控件的类进行设置,一看就懂,选择器之间用空格隔开,包含选择器和子元素选择器需要区分:
1 2 3 4 5 6 7 8 9 10
| QFrame { background: gray; } QFrame QPushButton { border: 2px solid magenta; border-radius: 10px; background: white; padding: 2px 15px; }
|
子元素选择器
选择器之间用 >
隔开,作用于Widget
的 直接 子Widget
1 2 3 4 5 6 7 8 9 10
| QFrame { background: gray; } QFrame > QPushButton { border: 2px solid magenta; border-radius: 10px; background: white; padding: 2px 15px; }
|
伪类选择器
选择器:状态
作为选择器。支持!
操作。
1 2 3
| QPushButton:hover { color: white } QCheckBox:checked { color: white } QCheckBox:!checked { color: red }
|
常见的伪类选择器如下所示:
伪类 |
说明 |
:disabled |
Widget 被禁用时 |
:enabled |
Widget 可使用时 |
:focus |
Widget 得到输入焦点 |
:hover |
鼠标放到 Widget 上 |
:pressed |
鼠标按下时 |
:checked |
被选中时 |
:unchecked |
未选中时 |
:has-children |
Item 有子 item,例如 QTreeView 的 item 有子 item 时 |
:has-siblings |
Item 有 兄弟,例如 QTreeView 的 item 有兄弟 item 时 |
:open |
打开或展开状态,例如 QTreeView 的 item 展开,QPushButton 的菜单弹出时 |
:closed |
关闭或者非展开状态 |
:on |
Widget 状态是可切换的(toggle), 在 on 状态 |
:off |
Widget 状态是可切换的(toggle), 在 off 状态 |
SubControl选择器
选择器::subcontrol
作为选择 Subcontrol 的选择器。
有些 Widget 是由多个部分组合成的,例如 QCheckBox 由 icon(indicator) 和 text 组成,可以使用 选择器::subcontrol
来设置 subcontrol 的样式:
1 2 3 4 5 6 7 8
| QCheckBox::indicator { width: 20px; height: 20px; }
QCheckBox { spacing: 8px; }
|
常用的 Subcontrol 有:
Subcontrol |
说明 |
::indicator |
A QCheckBox, QRadioButton, checkable QMenu item, or a checkable QGroupBox’s indicator |
::menu-indicator |
A QPushButton’s menu indicator |
::item |
A QMenu, QMenuBar, or QStatusBar’s item |
::up-button |
A QSpinBox or QScrollBar’s up button |
::down-button |
A QSpinBox or QScrollBar’s down button |
::up-arrow |
A QSpinBox, QScrollBar, or QHeaderView’s up arrow |
::down-arrow |
A QSpinBox, QScrollBar, or QHeaderView’s down arrow |
::drop-down |
A QComboBox’s drop-down arrow |
::title |
A QGroupBox or QDockWidget’s title |
::groove |
A QSlider’s groove |
::chunk |
A QProgressBar’s progress chunk |
::branch |
A QTreeView’s branch indicator |
补充
一些其他写法的参考demo
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
|
$text = #222; $background = #FDFDFD; $border = #999999; $selected = #8BF; $pressed = #59F; $focused = #EA2; $grad1a = #EEEEEF; $grad1b = #DADADF;
QWidget { color: $text; background-color: $background; }
QFrame{ color: $text; background-color: $background; } QMainWindow::separator{ border: 1px solid $border; border-style: outset; width: 4px; height: 4px; } QMainWindow::separator:hover{ background: $selected; } QSplitter::handle{ border: 1px solid $border; border-style: outset; width: 4px; height: 4px; } QSplitter::handle:hover{ border-color: $focused; } QSplitter::handle:pressed{ border-color: $pressed; } QSizeGrip{ background-color: none; }
QLabel { background: transparent; border: 1px solid transparent; padding: 1px; }
QToolTip { border: 1px solid $border; padding: 5px; border-radius: 3px; opacity:210; }
QLineEdit { background: $background; selection-background-color: $selected; border: 1px solid $border; border-radius: 2px; border-style: inset; padding: 0 1px; }
QLineEdit:hover{ border-color: $selected; } QLineEdit:focus{ border-color: $focused; }
QLineEdit[echoMode="2"]{ lineedit-password-character: 9679; }
QLineEdit:read-only { color: lightgray; }
QLineEdit:disabled{ color: lightgray; background: lightgray; }
QTextEdit{ selection-background-color:$selected; border: 1px solid $border; border-style: inset; } QTextEdit:hover{ border-color: $selected; } QTextEdit:focus{ border-color: $focused; }
QPushButton { border: 1px solid $border; border-radius: 2px;
padding: 1px 4px; min-width: 50px; min-height: 16px; }
QPushButton:hover{ background-color: $selected; border-color: $pressed; }
QPushButton:pressed { border-width: 1px; background-color: $pressed; border-color: $border; }
QPushButton:focus, QPushButton:default { border-color: $focused; }
QToolButton,QToolButton:unchecked { border: 1px solid transparent; border-radius: 3px; background-color: transparent; margin: 1px; } QToolButton:checked{ background-color: $selected; border-color: $pressed; } QToolButton:hover{ background-color: $selected; border-color: $pressed; }
QToolButton:pressed,QToolButton:checked:hover{ background-color: $pressed; border-color: $focused; } QToolButton:checked:pressed{ background-color: $selected; }
QToolButton[popupMode="1"]{ padding-left: 1px; padding-right: 15px; border: 1px solid $border; min-height: 15px;
} QToolButton[popupMode="1"]:hover{ background-color: $selected; border-color: $pressed; } QToolButton[popupMode="1"]:pressed{ border-width: 1px; background-color: $pressed; border-color: $border; } QToolButton::menu-button { border: 1px solid $border; border-top-right-radius: 2px; border-bottom-right-radius: 2px; width: 16px; }
QProgressBar { border: 1px solid $border; border-radius: 4px; text-align: center; }
QProgressBar::chunk { background-color: $focused; width: 4px; margin: 1px; }
QSlider{ border: 1px solid transparent; } QSlider::groove{ border: 1px solid $border; background: $background; } QSlider::handle { border: 1px solid $border; background: $selected; } QSlider::groove:horizontal { height: 3px; left:5px; right: 5px; } QSlider::groove:vertical{ width: 3px; top: 5px; bottom: 5px; } QSlider::handle:horizontal{ width: 6px; margin: -7px; } QSlider::handle:vertical{ height: 6px; margin: -7px; } QSlider::add-page{ border: 1px solid $border; background:$grad1a; } QSlider::sub-page{ background: $focused; }
QScrollBar{ background-color: $background; border: 1px solid $border; border-radius: 5px; padding: 1px; height: 10px; width: 10px; } QScrollBar:hover{ border-color:$selected; } QScrollBar::handle{ border-radius: 3px; background: $pressed; min-width: 16px; min-height: 16px; } QScrollBar::handle:hover { background: $focused; } QScrollBar::add-line, QScrollBar::sub-line, QScrollBar::add-page, QScrollBar::sub-page { width: 0px; background: transparent; } QScrollArea{ border: none; }
QDockWidget, QDockWidget > QWidget { border-color: $border; background: transparent; } QDockWidget::title { border-bottom: 1px solid $border; border-style: inset; text-align: left; padding: 6px; }
QGroupBox { background-color: $background; border: 1px solid $border; border-radius: 4px; margin-top: 0.5em; } QGroupBox::title { subcontrol-origin: margin; subcontrol-position: top left; left: 1em; top: 0.1em; background-color: $background; }
QToolBox{ border: 1px solid $border; } QToolBox::tab { background: $grad1a; border: 1px solid $border; border-radius: 1px; } QToolBox::tab:hover { background-color: $selected; border-color: transparent; } QToolBox::tab:pressed { background-color: $pressed; border-color: transparent; } QToolBox::tab:selected { font-weight: bold; border-color: $selected; }
QTabWidget{ margin-top:10px; } QTabWidget::pane{ border: 1px solid $border; } QTabWidget::tab-bar { left: 0px; } QTabBar::tab { background: $background; border: 1px solid $border; padding: 3px 5px; } QTabBar::tab:hover { background: $selected; border-color: transparent; } QTabBar::tab:selected { background: $selected; border-color: $pressed; } QTabBar::tab:pressed { background: $pressed; border-color: transparent; } QTabBar::tab:focus { border-color: $focused; } QTabBar::tab:top{ margin-top: 3px; border-bottom: transparent; margin-right: 1px; } QTabBar::tab:bottom{ margin-bottom: 3px; border-top: transparent; margin-right: 1px; } QTabBar::tab:left{ border-right: transparent; margin-bottom: 1px; } QTabBar::tab:right{ border-left: transparent; margin-bottom: 1px; }
QHeaderView { border: none; margin: 0px; padding: 0px; } QHeaderView::section, QTableCornerButton::section { background-color: $grad1a; padding: 0 3px; border-right: 1px solid $border; border-bottom: 1px solid $border; border-radius: 0px; } QHeaderView::section:hover, QTableCornerButton::section:hover{ background-color: $selected; } QHeaderView::section:pressed{ background-color: $pressed; } QHeaderView::section:checked { background-color: $focused; }
QTableWidget, QTableView { gridline-color: $border; background: $background; alternate-background-color: $grad1a; selection-background-color:$selected; border:1px solid $border; } QTableView::item, QTabWidget::item{ background: transparent; outline-style: none; border: none; }
QTableView::item:hover { background: $selected; border: 1px solid $focused; }
QTableView::item:selected { background: $selected; color: $grad1a; }
QTableView::item:selected:active { background: $pressed; color: $grad1a; }
QTableWidget QComboBox{ margin: 2px; border: none; }
|