(self)
| 1243 | self.tk.call(self._w, 'paneconfigure', entry, *self._options(cnf, kw)) |
| 1244 | |
| 1245 | def panes(self): |
| 1246 | names = self.tk.splitlist(self.tk.call(self._w, 'panes')) |
| 1247 | return [self.subwidget(x) for x in names] |
| 1248 | |
| 1249 | class PopupMenu(TixWidget): |
| 1250 | """PopupMenu widget can be used as a replacement of the tk_popup command. |