(self, master, cnf={}, **kw)
| 697 | filelist ScrolledListBox""" |
| 698 | |
| 699 | def __init__(self, master, cnf={}, **kw): |
| 700 | TixWidget.__init__(self, master, 'tixDirSelectBox', ['options'], cnf, kw) |
| 701 | self.subwidget_list['dirlist'] = _dummyDirList(self, 'dirlist') |
| 702 | self.subwidget_list['dircbx'] = _dummyFileComboBox(self, 'dircbx') |
| 703 | |
| 704 | class ExFileSelectBox(TixWidget): |
| 705 | """ExFileSelectBox - MS Windows style file select box. |
nothing calls this directly
no test coverage detected