How to simply change the background colour of a cell inside a TableView
-
@G4bandit said in How to simply change the background colour of a cell inside a TableView:
TblModel is a QTableModel
- There's no such thing as
QTableModel
in Qt, you have to be a little more specific. If you are talking aboutQSqlTableModel
then the problem is here. It will reject everything other thanQt::EditRole
. That's the reason I suggested usingExtraRolesProxyModel
in between - Are you setting the model on the view?
view->setModel(proxyModel);
P.S.
It's not a bad idea to wrapsetData
,insert*
,remove*
andmove*
calls in aQ_ASSUME
to make sure they actually did what you think they should do - There's no such thing as
-
@VRonin said in How to simply change the background colour of a cell inside a TableView:
Are you setting the model on the view? view->setModel(proxyModel);
I have changed the code to this:
QSortFilterProxyModel* proxyModel = new QSortFilterProxyModel(this); proxyModel->setSourceModel(TblModel); ui->TV_DBOut->setModel(proxyModel); TblModel->setData(proxyModel->index(0,0),QBrush(Qt::red),Qt::BackgroundRole);
But I guess strongly that it is not what you have meant or at all that it is more complex.
Like you said in your post before:
- Add this proxy between your model and your view
I can not follow you, - I am a bloody newbie.
- Add this proxy between your model and your view
-
Then
TblModel->setData
will returnfalse
for every role exceptQt::EditRole
so basicallyTblModel->setData(proxyModel->index(0,0),QBrush(Qt::red),Qt::BackgroundRole);
will do absolutely nothing.You need something that handles the other roles that
QSqlTableModel
ignores. Enter https://pastebin.com/gmNCuUFk -
I agree with you TblModel->setData returns false.
But my main issue still that I am not able to combine all your information/hints/code parts to one working unit.
1:
I have created a header file with the content of "https://pastebin.com/gmNCuUFk"
Do not know what to do with it.2:
and I also tried to run your code posted on
VRonin 15. Dez. 2017, 10:313:
And this point
VRonin: 1.Add this proxy between your model and your view
Do not know how to -
@G4bandit said in How to simply change the background colour of a cell inside a TableView:
Do not know how to
It's the same as
QSortFilterProxyModel* proxyModel = new QSortFilterProxyModel(this); proxyModel->setSourceModel(TblModel); ui->TV_DBOut->setModel(proxyModel);
but instead of
QSortFilterProxyModel
useExtraRolesProxyModel
-
If someone ask how to change the color of headers,- here is a helpful link:
tview->model()->setHeaderData(0,Qt::Horizontal,QBrush(QColor("red")),Qt::BackgroundRole); tview->show(); QApplication::setStyle(QStyleFactory::create("Fusion"));
The last line was on my PC (Win) necessary to get the effect.
-
@G4banditi need to do somo simililar can help me please , i cant understand
-
I now implemented a generic proxy for this, I called it Role Mask Proxy Model. I have an example that changes the background, it uses
QStringListModel
but it's exactly the same with other base models -
if i use a QSqlRelationalTableModel, Role Mask Proxy Model works????
-
Yes, works on any model
-
If you call
addMaskedRole
passing eitherQt::DisplayRole
orQt::EditRole
any change will stay in the proxy and not be passed to the source model.You should only mask the roles that you need, in this case
Qt::BackgroundRole
.If it's still not clear, please post us the code using RoleMaskProxyModel and we'll be more specific on the changes to make