ENH: instead of solid red for new entries, blend it with the alternating

white/gray (depending on style).
This commit is contained in:
Clinton Stimpson 2008-06-13 15:29:07 -04:00
parent b1c31be668
commit 82a5b8000e
1 changed files with 4 additions and 4 deletions

View File

@ -281,8 +281,8 @@ void QCMakeCacheModel::setProperties(const QCMakePropertyList& props)
new QStandardItem(key.isEmpty() ? tr("Ungrouped Entries") : key)
);
parentItems.append(new QStandardItem());
parentItems[0]->setData(QBrush(QColor(255,100,100)), Qt::BackgroundColorRole);
parentItems[1]->setData(QBrush(QColor(255,100,100)), Qt::BackgroundColorRole);
parentItems[0]->setData(QBrush(QColor(255,100,100,170)), Qt::BackgroundColorRole);
parentItems[1]->setData(QBrush(QColor(255,100,100,170)), Qt::BackgroundColorRole);
root->appendRow(parentItems);
foreach(QCMakeProperty prop, props)
@ -367,8 +367,8 @@ void QCMakeCacheModel::setPropertyData(const QModelIndex& idx1,
if(isNew)
{
this->setData(idx1, QBrush(QColor(255,100,100)), Qt::BackgroundColorRole);
this->setData(idx2, QBrush(QColor(255,100,100)), Qt::BackgroundColorRole);
this->setData(idx1, QBrush(QColor(255,100,100,170)), Qt::BackgroundColorRole);
this->setData(idx2, QBrush(QColor(255,100,100,170)), Qt::BackgroundColorRole);
}
}