Solved
How to iterate all widgets inside container?
Given a container which contains , how to iterate through all the widgets which have been added inside ?
Given a container which contains , how to iterate through all the widgets which have been added inside ?
Ok I think I manage to do this this way:
auto child = this->getFirstChild();
while (child) {
// do action
child = child->getNextSibling();
}Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.