(self, master=None, cnf={}, **kw)
| 621 | |
| 622 | # FIXME: It should inherit -superclass tixLabelWidget |
| 623 | def __init__ (self, master=None, cnf={}, **kw): |
| 624 | TixWidget.__init__(self, master, 'tixControl', ['options'], cnf, kw) |
| 625 | self.subwidget_list['incr'] = _dummyButton(self, 'incr') |
| 626 | self.subwidget_list['decr'] = _dummyButton(self, 'decr') |
| 627 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
| 628 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
| 629 | |
| 630 | def decrement(self): |
| 631 | self.tk.call(self._w, 'decr') |
nothing calls this directly
no test coverage detected