Return a list of the status (True/False) of all of the check buttons.
(self)
| 1475 | self._observers.process('clicked', None) |
| 1476 | |
| 1477 | def get_status(self): |
| 1478 | """ |
| 1479 | Return a list of the status (True/False) of all of the check buttons. |
| 1480 | """ |
| 1481 | return [not colors.same_color(color, colors.to_rgba("none")) |
| 1482 | for color in self._buttons.get_facecolors()] |
| 1483 | |
| 1484 | def get_checked_labels(self): |
| 1485 | """Return a list of labels currently checked by user.""" |