Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

QObject cloning

I know that Qobjects are supposed to be identities not values eg you cannot copy them and by default the copy constructor and assignment are disabled as explained in qt documentation. But is it possible to create a new QObject from an existing one using a clone method? Would this be a logic error ? If I say

QObject b; 
QObject a; 
b.cloneFrom(a);

or

QObject a = new QOBject();
QObject b = new QOBject();
b->cloneFrom(a);

and the clone method copies stuff like members etc would this be wrong?

And if this is ok can I write my own copy constructor and assignment operator that does just that?

Note: I actually want to try this with classes that inherit qobject.

like image 264
Olorin Avatar asked May 18 '10 08:05

Olorin


People also ask

What is a QObject?

QObject is the heart of the Qt Object Model. The central feature in this model is a very powerful mechanism for seamless object communication called signals and slots. You can connect a signal to a slot with connect() and destroy the connection with disconnect().

Is QObject copyable?

There are several reasons why a QObject can't be copied. The two biggest reasons are: QObjects usually communicate with each other using the signals and slots mechanism. It's unclear whether the connected signals and/or slots should be transferred over to the copy.


2 Answers

in my opinion cloning QObjects is almost always semantically broken and leads to unwanted side-effects, due to them having an "identity" as you already said. Therefore, cloning breaks all the assumptions one has about QObjects, like their signal/slot connections and dynamic properties. You should consider if the objects to clone really need to be QObjects, or if the "value-part" you want to have cloned could be factored out.

And if at all, cloning makes only sense for your specific subclasses of QObjects, not for QObjects themselves (which have no real "value-like" properties).

also, A; B; A.cloneFrom( B ) looks broken, as it doesn't work if B is instance of a subclass of B instead of B itself. Clone should be done via a virtual B* B::clone() const I'd say.

like image 97
Frank Osterfeld Avatar answered Sep 18 '22 22:09

Frank Osterfeld


I think that the best practice in this case to create class with the data you want to copy between QObjects. This class should not be derived from QObject or any class derived from QObject. And this class will be "value container". In this case you should be able to solve your problem in really good way.

One more tip: for this class you can use implicit data sharing with copy on write to reduce overhead of unnecessary copying: http://doc.qt.io/qt-5/implicit-sharing.html

like image 45
VestniK Avatar answered Sep 16 '22 22:09

VestniK