(self)
| 187 | return bx |
| 188 | |
| 189 | def GetHeight(self): |
| 190 | height = 0 |
| 191 | for button in self.buttons: |
| 192 | if not button.IsVisible(): |
| 193 | continue |
| 194 | |
| 195 | bwidth, bheight = button.GetSize() |
| 196 | height = max(height, bheight) |
| 197 | |
| 198 | return height |
| 199 | |
| 200 | @staticmethod |
| 201 | def HitTest(target, position, area): |
no test coverage detected