Hi , i finaly found the solution :

i only needed to use the QMdiSubWindow's method : widget() to be able to acess my currently opened widget's methods and signals ...

SO it will become :
Qt Code:
  1. self.mdiArea.activeSubWindow().widget().update_move_state()
To copy to clipboard, switch view to plain text mode 

instead of :
Qt Code:
  1. self.mdiArea.activeSubWindow().update_move_state()
To copy to clipboard, switch view to plain text mode