(self, master, cnf={}, **kw)
| 1322 | |
| 1323 | # FIXME: It should inherit -superclass tixScrolledWidget |
| 1324 | def __init__(self, master, cnf={}, **kw): |
| 1325 | TixWidget.__init__(self, master, 'tixScrolledText', ['options'], cnf, kw) |
| 1326 | self.subwidget_list['text'] = _dummyText(self, 'text') |
| 1327 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1328 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
| 1329 | |
| 1330 | class ScrolledTList(TixWidget): |
| 1331 | """ScrolledTList - TList with automatic scrollbars.""" |
nothing calls this directly
no test coverage detected