我想创建一个组合框,选择与颜色相关的一些内容。我希望内容的背景显示颜色。我已经实现了这个目标:
QList<QString> names;
QList<QColor> bgColors;
QList<QColor> fgColors;
QComboBox* colorComboBox = new QComboBox();
for(int i = 0; i < names.size(); ++i)
{
colorComboBox->addItem(names.at(i), bgColors.at(i));
const QModelIndex idx = colorComboBox->model()->index(i, 0);
colorComboBox->model()->setData(idx, bgColors.at(i), Qt::BackgroundColorRole);
colorComboBox->model()->setData(idx, fgColors.at(i), Qt::ForegroundRole);
}
组合框显示我想要的文本,带有我想要的背景颜色(不像ColorEditorFactory示例那样精致,它只显示文本旁边的一个小矩形,但这就是我想要的方式)。
我需要什么:
选择行/颜色后,我希望组合框显示颜色。现在,关闭时的组合框显示文本而不是颜色。
如何更改组合框标题的颜色? (我称它为标题,但它可能有不同的名称,不确定 - 显示在用于选择的表格上方和组合框关闭时的部分)
编辑:我尝试在currentIndexChanged
的插槽中设置样式表:
setStyleSheet("QComboBox { color: " + fgColor +
"; background-color: " + bgColor + "; }");
结果:它改变了该颜色的整个组合框,忘记了初始颜色。
setStyleSheet("QComboBox:!on { color: " + fgColor +
"; background-color: " + bgColor + "; }");
结果:当未选择时它很好地改变了颜色 - 但是高光和标题是灰色的并且难以阅读,我希望我也可以改变它。当我悬停时,整个组合颜色会变为我设置的最后一个颜色。
答案可能在样式表中 - 如果我能弄清楚什么属性适用于标题。
答案 0 :(得分:1)
如果我理解得很清楚,您想在单击某个项目后立即更改QComboBox标题的颜色。我有这个代码对我有用:
在.cpp文件中:
myClass::init() // called in the constructor of myClass
{
names.clear();
names.append("One");
names.append("Two");
names.append("Three");
bgColors.clear();
bgColors.append(QColor("blue"));
bgColors.append(QColor("red"));
bgColors.append(QColor("green"));
fgColors.clear();
fgColors.append(QColor("yellow"));
fgColors.append(QColor("magenta"));
fgColors.append(QColor("cyan"));
colorComboBox = new QComboBox();
colorComboBox->setItemDelegate(new SelectionKillerDelegate);
// don't know why but this line seems important; uncomment it,
// and the text in the QComboBox (not the items) will be highlighted
colorComboBox->setStyleSheet("QComboBox { border-radius: 1px; }");
for(int i = 0; i < names.size(); ++i)
{
colorComboBox->addItem(names.at(i), bgColors.at(i));
const QModelIndex idx = colorComboBox->model()->index(i, 0);
colorComboBox->model()->setData(idx, bgColors.at(i), Qt::BackgroundColorRole);
colorComboBox->model()->setData(idx, fgColors.at(i), Qt::ForegroundRole);
}
connect(colorComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(comboBoxChanged(int)));
}
void myClass::comboBoxChanged(int index)
{
QColor forecolor = (QColor) (colorComboBox->itemData(index, Qt::ForegroundRole).value<QColor>());
QString fgColor = forecolor.name(QColor::HexRgb);
QColor backcolor = (QColor) (colorComboBox->itemData(index, Qt::BackgroundRole).value<QColor>());
QString bgColor = backcolor.name(QColor::HexRgb);
setStyleSheet("QComboBox { color: " + fgColor + "; background-color: " + bgColor + "; }");
}
在.h文件中(感谢this answer的QItemDelegate
子类,它允许您选择QComboBox但未突出显示的项目:
class SelectionKillerDelegate : public QItemDelegate
{
virtual void paint(QPainter *painter,
const QStyleOptionViewItem &option,
const QModelIndex &index) const override
{
QStyleOptionViewItem myOption = option;
myOption.state &= (~QStyle::State_Selected);
QItemDelegate::paint (painter, myOption, index);
}
};
private :
QComboBox* colorComboBox;
QList<QString> names;
QList<QColor> bgColors;
QList<QColor> fgColors;
public slots :
void comboBoxChanged(int);
我希望它也适合你。