(self, master, cnf={}, **kw)
| 674 | |
| 675 | # FIXME: It should inherit -superclass tixScrolledHList |
| 676 | def __init__(self, master, cnf={}, **kw): |
| 677 | TixWidget.__init__(self, master, 'tixDirTree', ['options'], cnf, kw) |
| 678 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 679 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 680 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
| 681 | |
| 682 | def chdir(self, dir): |
| 683 | self.tk.call(self._w, 'chdir', dir) |
nothing calls this directly
no test coverage detected