我的自定义表格模型派生自QAbstractTableModel
,然后显示在QTableView
。
看起来像这样:
我想更改某些行标题的文本颜色,可以在模型中决定。是否可以从那里着色某些标题?到目前为止我找不到办法。我发现的是为所有标题设置背景/文本颜色,而不是特别少。颜色应该是用户的标记。
答案 0 :(得分:2)
您需要做的是重新实现QAbstractTableModel::headerData()
。
根据节的值(标题索引从零开始),您可以单独设置标题项的样式。
Qt::ItemDataRole中前景(=文字颜色)和背景的相关值为Qt::BackgroundRole
和Qt::ForegrondRole
E.g。像这样:
QVariant MyTableModel::headerData(int section, Qt::Orientation orientation, int role) const {
//make all odd horizontal header items black background with white text
//for even ones just keep the default background and make text red
if (orientation == Qt::Horizontal) {
if (role == Qt::ForegroundRole) {
if (section % 2 == 0)
return Qt::red;
else
return Qt::white;
}
else if (role == Qt::BackgroundRole) {
if (section % 2 == 0)
return QVariant();
else
return Qt::black;
}
else if (...) {
...
// handle other roles e.g. Qt::DisplayRole
...
}
else {
//nothing special -> use default values
return QVariant();
}
}
else if (orientation == Qt::Vertical) {
...
// handle the vertical header items
...
}
return QVariant();
}