Hello everyone!
I've been looking for a way of auto-connecting signals, found QMetaObject::connectSlotsByName() , which relies/assumes that you want to connect child's signals to his parent's slots.
I'm wondering if there is a way to do it against any (Q)object, something like:

this->connectSlotsByName(obj);

Expecting 'obj signals' to be connected to 'this slots' matching the on_obj_signal() pattern.
Any ideas will be appeciated