(target, position, area)
| 199 | |
| 200 | @staticmethod |
| 201 | def HitTest(target, position, area): |
| 202 | x, y = target |
| 203 | px, py = position |
| 204 | aX, aY = area |
| 205 | if (x < px < x + aX) and (y < py < y + aY): |
| 206 | return True |
| 207 | return False |
| 208 | |
| 209 | def Render(self, pdc): |
| 210 | bx = self.toolbarX |
no outgoing calls
no test coverage detected