I am searching for a signal that is emitted on editing a cell in a QTableWidget. I don't want "cellChanged" because it is just emitted on lefting the cell.
Example: When I input "abc" into a cell, I want a signal after "a", after "b" and after "c". In this case, I want the signal three times. "cellChanged" emits the signal only one time after lefting the cell.
Is there a possibility to realize this?