(self, master, cnf={}, **kw)
| 841 | |
| 842 | # FIXME: It should inherit -superclass tixLabelWidget |
| 843 | def __init__(self, master, cnf={}, **kw): |
| 844 | TixWidget.__init__(self, master, 'tixFileEntry', |
| 845 | ['dialogtype', 'options'], cnf, kw) |
| 846 | self.subwidget_list['button'] = _dummyButton(self, 'button') |
| 847 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
| 848 | |
| 849 | def invoke(self): |
| 850 | self.tk.call(self._w, 'invoke') |
nothing calls this directly
no test coverage detected