| 1664 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1665 | |
| 1666 | class _dummyComboBox(ComboBox, TixSubWidget): |
| 1667 | def __init__(self, master, name, destroy_physically=1): |
| 1668 | TixSubWidget.__init__(self, master, name, ['fancy',destroy_physically]) |
| 1669 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
| 1670 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
| 1671 | self.subwidget_list['arrow'] = _dummyButton(self, 'arrow') |
| 1672 | |
| 1673 | self.subwidget_list['slistbox'] = _dummyScrolledListBox(self, |
| 1674 | 'slistbox') |
| 1675 | try: |
| 1676 | self.subwidget_list['tick'] = _dummyButton(self, 'tick') |
| 1677 | #cross Button : present if created with the fancy option |
| 1678 | self.subwidget_list['cross'] = _dummyButton(self, 'cross') |
| 1679 | except TypeError: |
| 1680 | # unavailable when -fancy not specified |
| 1681 | pass |
| 1682 | |
| 1683 | class _dummyDirList(DirList, TixSubWidget): |
| 1684 | def __init__(self, master, name, destroy_physically=1): |