How can I change QTableView's color of the area that doesn't have cells on it?
-
I can reproduce this problem here and it looks like a bug. When setting the background-color for the item in addition to the background -color and the alternate-background-color for the table, then the alternate-background-color will be ignored. I suggest you report this issue in "Jira":https://bugreports.qt.nokia.com//secure/Dashboard.jspa.
-
if you use a proxy model, the proxy models data method is called for each data query instead of the methods of the original model. This then calls the original (source) model. So you can do everything you want there, like changing backroundColor via the Qt::BackgroundRole. IMHO ProxyModels are easier then derived SQL models ;-)
-
Yes, you can create your custom ProxyModel by sublcassing QSortFilterProxyModel and reimplementing the data() method. From there, you can do everything you want, like Gerolf said.
Finally, you just set the sourceModel of your ProxyModel, and it should work :)
-
Yes. If you were using 4.8, I would suggest you use -QIdentityModel- [[doc:QIdentityProxyModel]] as your base class, but if you are still on 4.7, use [[doc:QSortFilterProxyModel]] instead. You only need to reimplement the data() method. In that method, you only need to implement the case where the Qt::BackgroundRole is requested. Based on the row number (odd or even), you can return a different color. For all other cases, you get the parent QModelIndex by calling mapToSource() on the model index, and then return the result of calling the data() method on the source model with the same role and the model index you just mapped.
-
bq. For all other cases, you get the parent QModelIndex by calling mapToSource() on the model index, and then return the result of calling the data() method on the source model with the same role and the model index you just mapped.
Or just calling the base class method ? Like :
@
QVariant MyProxyModel::data(const QModelIndex &index, int role)
{
if (role == Qt::BackgroundRole)
{
return ...
}return QSortFilterProxyModel::data(index, role);
@
bq. If you were using 4.8, I would suggest you use QIdentityModel as your base class
I made a research and I guess you meant "QIdentityProxyModel":http://doc.trolltech.com/4.8-snapshot/qidentityproxymodel.html
Interesting :)
-
Yes, I guess you can also call the base class implementation. That does the same:
@
Q_D(const QSortFilterProxyModel);
QModelIndex source_index = mapToSource(index);
if (index.isValid() && !source_index.isValid())
return QVariant();
return d->model->data(source_index, role);
@I guess it does not matter much.
-
I've set the outside area of the cells like that:
@
QPalette p = view->palette();
QColor color = p.color(QPalette::Window);
p.setColor(QPalette::Base, color);
view->setPalette(p);
@Then data() in MyProxyModel:
@
QVariant MyProxyModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid())
return QVariant::Invalid;int row = index.row(); QWidget widget; // I didn't found a wiser method to obtain the palette colors than creating a QWidget inside the data() method QColor alternateColor1 = widget.palette().color(QPalette::AlternateBase); QColor alternateColor2 = widget.palette().color(QPalette::Base); if (role == Qt::BackgroundRole) { QBrush rowBackground; if (row % 2 == 0) rowBackground = QBrush(alternateColor1); else if (row % 2 != 0) rowBackground = QBrush(alternateColor2); return rowBackground; } return QSortFilterProxyModel::data(index, role);
}
@It does what I wanted.
Thank you all for the help. -
The data method is called very frequently. It is not a good idea to create a widget in this method. Instead, why not just create a pair of getters and setter methods for the colors on the proxy model. Set them once when you create the proxy, and use them in your data method. That will be much more performant.
-
I know it's a little bit outside the subject but, how is much better:
to have setters like this:@
void MyProxyModel::setAlternateColor1()
{
QWidget widget;
alternateColor1 = widget.palette().color(QPalette::Base);
}void MyProxyModel::setAlternateColor2()
{
QWidget widget;
alternateColor2 = widget.palette().color(QPalette::AlternateBase);
}
@and data() calling the getters,
or setting the colors in the constructor like this:@
MyProxyModel::MyProxyModel()
{
QWidget widget;
alternateColor1 = widget.palette().color(QPalette::Base);
alternateColor2 = widget.palette().color(QPalette::AlternateBase);
}
@and data using directly QColor alternateColor1 and QColor alternateColor2?
-
I think you misunterstood what Andre meant.
bq. Instead, why not just create a pair of getters and setter methods for the colors on the proxy model.
A pair of getters/setters would be :
@
void MyProxyModel::setAlternateColor1(const QColor &color)
{
mAlternateColor1 = color;
}QColor MyProxyModel::alternateColor1() const
{
return mAlternateColor1;
}
@ -
Octal:
Indeed, that's what I meant, and also a getter and a setter for the primary color. You can set them at initialization of your proxy model, which is very likely to be in the constructor of a widget class. Hence, you have cheap access to a widget pointer and the palette there, and you only need that access once. -
I've created setters and getters. Now I use the proxy like that:
@
proxyModel = new MyProxyModel;
QColor altColor1 = this->palette().color(QPalette::Base);
QColor altColor2 = this->palette().color(QPalette::AlternateBase);
proxyModel->setAlternateColor1(altColor1);
proxyModel->setAlternateColor2(altColor2);
proxyModel->setSourceModel(model);
@proxyModel's data() method calls the getters.
Is it better like that?Andre, what do you mean with primary color?