(self, target, position, area)
| 110 | return self.EditBox.GetLineText(lineno) |
| 111 | |
| 112 | def HitTest(self, target, position, area): |
| 113 | x, y = target |
| 114 | px, py = position |
| 115 | aX, aY = area |
| 116 | if (x < px < x + aX) and (y < py < y + aY): |
| 117 | return True |
| 118 | return False |
| 119 | |
| 120 | def GetButtonsPos(self): |
| 121 | btnpos = [ |
no outgoing calls
no test coverage detected