Return a tuple of x and y coordinates of the pointer on the root window.
(self)
| 1311 | self.tk.call('winfo', 'pointerx', self._w)) |
| 1312 | |
| 1313 | def winfo_pointerxy(self): |
| 1314 | """Return a tuple of x and y coordinates of the pointer on the root window.""" |
| 1315 | return self._getints( |
| 1316 | self.tk.call('winfo', 'pointerxy', self._w)) |
| 1317 | |
| 1318 | def winfo_pointery(self): |
| 1319 | """Return the y coordinate of the pointer on the root window.""" |