The qobject class is the base class of all objects in QT.
Qobject is the core object model of QT. The center in this model is a very powerful seamless communication object called the signal and slot mechanism. You can connect a signal slot () and break the connection and disconnect (). To avoid endless loop notifications, You can temporarily block signals with blocksignals (). The connectnotify () and disconnectnotifnotify () protection functions can be used to track contact information. Qobject is organized in the object tree. When you create a qobject and another object as the parent, the object is automatically added to the parent's child () list. The parent needs the ownership of the object, that is ., It automatically deletes the child's destructor. You can find the name and optional type of an object using findchild () or findchildren ()
Qt: qobject translate