(self, master=None, cnf={}, **kw)
| 1508 | |
| 1509 | # FIXME: It should inherit -superclass tixScrolledWidget |
| 1510 | def __init__(self, master=None, cnf={}, **kw): |
| 1511 | TixWidget.__init__(self, master, 'tixTree', |
| 1512 | ['options'], cnf, kw) |
| 1513 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 1514 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1515 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
| 1516 | |
| 1517 | def autosetmode(self): |
| 1518 | '''This command calls the setmode method for all the entries in this |
nothing calls this directly
no test coverage detected