how do I select all checkboxes in
qbuttongroup
in python ?
self.group = QtGui.QButtonGroup()
Iterate over them using the buttons() method:
buttons()
def setAllButtonsChecked(self, checked=True) for button in self.group.buttons(): button.setChecked(checked)