Qt 在样式表中使用调色板颜色

Qt use palette color in stylesheet

在 qt 中,您通常使用 QPalette.

设置 QWidget 的颜色

示例:

QPalette palette = new QPalette();
palette.setBrush(QPalette::Base, this->palette().backgorund());

QLineEdit *line = new QLineEdit();
line->setPalette(palette);

现在我遇到了一个小问题。无法使用 QPalette 更改 QLineEdit 的边框颜色。这意味着,我必须使用 QStyleSheet.

示例:

QLineEdit *line = new QLineEdit();
line.setStyleSheet("border: 1px solid green");

但是现在我不能用QPalette设置QLineEdit的基色,因为QLineEdit的背景颜色不再连接到QPalette::base。 这意味着,以下代码不会更改 QLineEditbackground-color:

QPalette palette = new QPalette();
palette.setBrush(QPalette::Base, this->palette().backgorund());

QLineEdit *line = new QLineEdit();
line->setPalette(palette);
line->setStyleSheet("border: 1px solid green");

但是在StyleSheet中定义QLineEdit的background-color是不可能的,因为QLineEditbackground-color必须是动态的。

我的问题:如何将QLineEdit的background-color与QPalette::base连接起来,动态定义QLineEditbackground-colorQPalette

我找到了适合我的情况的解决方案。因为我只想遮住边框,不想给它上色,所以可以用QLineEdit::setFrame(bool)的方法。但是,如果我想像上面的示例一样为框架着色呢?到目前为止,我还没有找到解决方案。我对每一个答案都很满意。

只需在运行时构建所需的QString...

auto style_sheet = QString("border: 1px solid green;"
                           "background-color: #%1;")
  .arg(QPalette().color(QPalette::Base).rgba(), 0, 16);

上面的结果应该是 QString 例如...

border: 1px solid green;
background-color: #ffffffff;

然后...

line->setStyleSheet(style_sheet);

或者:

line->setStyleSheet(QStringLiteral(
    "border: 1px solid green;"
    "background-color: palette(base);"
));

参考:http://doc.qt.io/qt-5/stylesheet-reference.html#paletterole

使用 PaletteRole 还可以让 CSS 位于单独的 file/source。