MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / _dummyComboBox

Class _dummyComboBox

tools/python-3.11.9-amd64/Lib/tkinter/tix.py:1666–1681  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1664 TixSubWidget.__init__(self, master, name, destroy_physically)
1665
1666class _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
1683class _dummyDirList(DirList, TixSubWidget):
1684 def __init__(self, master, name, destroy_physically=1):

Callers 5

__init__Method · 0.85
__init__Method · 0.85
__init__Method · 0.85
__init__Method · 0.85
__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected