Is there a way to link or share a QTableWidgetItem between different QTableWidget

Hi, in Qt I have a QMainWindow -> centralWidget (QWidget) -> QtabWidget -> then 10 Tabs (QWidgets) -> each with up to 26 QtableWidgets:





Is there is a way to link some of the Items of each that are actually the same Item but it's repeated in each tableWidget, like for example the Player Name is the same per row in each tableWidget, so if the user edits the name in one, it should change it in the same row in every tableWidget.

I could use the signal

Qt Code:
  1. void QTableWidget::cellChanged(int row, int column)
To copy to clipboard, switch view to plain text mode 

But then if the user had sorted on one of the Tabs, the Row and Column numbers won't match anymore on every Tab.


I would also like that if I sort by column in one of the Tabs(tableWidget), the new arrangement of the rows should be the same in every Tab.

Can anyone point me in the correct direction?


By the way, whats the difference between
Qt Code:
  1. void QTableWidget::cellChanged(int row, int column)
To copy to clipboard, switch view to plain text mode 
and
Qt Code:
  1. void QTableWidget::itemChanged(QTableWidgetItem * item)
To copy to clipboard, switch view to plain text mode 
. Because I've been able to use QTableWidget::cellChanged correctly but I've no idea how to use QTableWidget::itemChanged, how do you use it, an example please.

Thanks a lot for your time.