Please let me know if I could send a signal when pressing a button on every child widget which attached to the parent widget by using Editor Widget Utilities.
For example: if I click “All On”, all “Text Block” items will be checked and vice versa.
Cast to Check Box if you want to fetch checkboxes. But it depends on how you actually structured it.
Can’t tell from the pic if the Check Box + Text Block is a user widget. If it is, you’d need to fetch those user widgets first → cast → get checkbox → tick it.
You could but the parent is already fully aware of its children so there’s no need for an Event Dispatcher. Call the children directly. We’re doing this, right:
I managed to solve it.
yeah, it’s quite a different way compared with what I’ve done in PySide.
I find a ListWidget needs an ObjectData and a Widget to represent the data.