| 36 | |
| 37 | # Class holding the button graphic info. At this time only the state is kept |
| 38 | class BtnInfo: |
| 39 | def __init__(self, state=True): |
| 40 | self.state = state # Can have 3 states - True, False, None (disabled) |
| 41 | |
| 42 | # Main function that creates the layout, window and has event loop |
| 43 | def main(): |