(self, master=None, cnf={}, **kw)
| 577 | |
| 578 | # FIXME: It should inherit -superclass tixLabelWidget |
| 579 | def __init__ (self, master=None, cnf={}, **kw): |
| 580 | TixWidget.__init__(self, master, 'tixComboBox', |
| 581 | ['editable', 'dropdown', 'fancy', 'options'], |
| 582 | cnf, kw) |
| 583 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
| 584 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
| 585 | self.subwidget_list['arrow'] = _dummyButton(self, 'arrow') |
| 586 | self.subwidget_list['slistbox'] = _dummyScrolledListBox(self, |
| 587 | 'slistbox') |
| 588 | try: |
| 589 | self.subwidget_list['tick'] = _dummyButton(self, 'tick') |
| 590 | self.subwidget_list['cross'] = _dummyButton(self, 'cross') |
| 591 | except TypeError: |
| 592 | # unavailable when -fancy not specified |
| 593 | pass |
| 594 | |
| 595 | # align |
| 596 |
nothing calls this directly
no test coverage detected