Return the toplevel widget of this widget.
(self)
| 1399 | return self.tk.call('winfo', 'server', self._w) |
| 1400 | |
| 1401 | def winfo_toplevel(self): |
| 1402 | """Return the toplevel widget of this widget.""" |
| 1403 | return self._nametowidget(self.tk.call( |
| 1404 | 'winfo', 'toplevel', self._w)) |
| 1405 | |
| 1406 | def winfo_viewable(self): |
| 1407 | """Return true if the widget and all its higher ancestors are mapped.""" |