Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

QTableWidget signal cellChanged(): distinguish between user input and change by routines

i am using PyQt but my question is a general Qt one:

I have a QTableWidget that is set up by the function updateTable. It writes the data from DATASET to the table when it is called. Unfortunately this causes my QTableWidget to emit the signal cellChanged() for every cell.

The signal cellChanged() is connected to a function on_tableWidget_cellChanged that reads the contents of the changed cell and writes it back to DATASET. This is necessary to allow the user to change the data manually.

So everytime the table is updated, its contents are written back to DATASET.

Is there a way to distinguish if the cell was changed by the user or by updateTable?

i thought of disconnecting on_tableWidget_cellChanged by updateTable temporarily but that seems to be a little dirty.

like image 302
crabman Avatar asked Dec 29 '22 23:12

crabman


1 Answers

In similar situation I've just used

bool QObject::blockSignals ( bool block )
bool QObject::signalsBlocked () const

Block signals before setting up the table, then unblock:

myTable.blockSignals(True)
#blah-blah..
myTable.blockSignals(False)
like image 102
Maxim Popravko Avatar answered Feb 01 '23 23:02

Maxim Popravko