Return the widget which is at the root coordinates ROOTX, ROOTY.
(self, rootX, rootY, displayof=0)
| 1235 | self.tk.call('winfo', 'colormapfull', self._w)) |
| 1236 | |
| 1237 | def winfo_containing(self, rootX, rootY, displayof=0): |
| 1238 | """Return the widget which is at the root coordinates ROOTX, ROOTY.""" |
| 1239 | args = ('winfo', 'containing') \ |
| 1240 | + self._displayof(displayof) + (rootX, rootY) |
| 1241 | name = self.tk.call(args) |
| 1242 | if not name: return None |
| 1243 | return self._nametowidget(name) |
| 1244 | |
| 1245 | def winfo_depth(self): |
| 1246 | """Return the number of bits per pixel.""" |
no test coverage detected