Skip to content
Advertisement

How to disable selection highlighting in a QTableWidget

I have a QTableWidget with a disabled setSelectionMode (QTableWidget::NoSelection) and the QTableWidgetItems I fill in don’t have the Qt::ItemIsEditable flag.

Nevertheless, a cell that has been clicked gets some kind of cursor (the black line at the bottom in my case):

Highlighted cell

How can I disable this “cursor”?

Advertisement

Answer

Does this help?

QPalette palette = tableWidget->palette();
palette.setBrush(QPalette::Highlight,QBrush(Qt::white));
palette.setBrush(QPalette::HighlightedText,QBrush(Qt::black));
tableWidget->setPalette(palette);

To elaborate a bit: the appearance of the items is governed by the palette of the view which you can retrieve with the TableWidget::palette() method. Note that it is returned as const so you have get a copy, change it and then apply it by using setPalette. Note also that here I simply set the cell color to white and the text color to black, ideally you would set it specifically to the default cell colors (also available from the palette). Note finally that in my case the item still retained a different border from the default one which I didn’t attempt to address here.

You can read more details about the various color definitions e.g. here (for Qt 4.8) http://qt-project.org/doc/qt-4.8/qpalette.html#ColorRole-enum

edit: some more sifting it seems that you should get rid of any border around a widget upon interaction (not selection) with it by setting the focus policy of the whole widget like this:

tableWidget->setFocusPolicy(Qt::NoFocus);

if this doesn’t do the trick, then I am running rapidly out of ideas.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement