I’ve created some dialog and on this dialog I have a vertical layout consisting of few checkboxes. I’d like to access those checkboxes during runtime via layout containing them. Is this possible?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you have a dialog called
myDialogyou can access its layout viathe layout itself inherits from QObject and like that has access to the
QObject::children()method.For example you could do something like this: