(self)
| 176 | return None |
| 177 | |
| 178 | def GetWidth(self): |
| 179 | bx = 0 |
| 180 | for button in self.buttons: |
| 181 | if not button.IsVisible(): |
| 182 | continue |
| 183 | |
| 184 | bwidth, bheight = button.GetSize() |
| 185 | bx += bwidth + self.padding |
| 186 | |
| 187 | return bx |
| 188 | |
| 189 | def GetHeight(self): |
| 190 | height = 0 |
no test coverage detected