Hi Paolo,
just as a side note: all QObjects arte copy disabled. Only the data containers (strings, containers, variant, ...) are copy enabled.
This is by design, as widgets are typically created by new, not by assignment. This is also necassary as the parent child relation ship comes also into the game.
Think of a QMainWindow with a huge UI insid (many child widgets with child widgets with ...). Copying that will be really complicated, especially as the parent only has a QWidget pointer but the cchild is a QWidget derived class...