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

Method __init__

tools/python-3.11.9-amd64/Lib/tkinter/tix.py:579–593  ·  view source on GitHub ↗
(self, master=None, cnf={}, **kw)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 5

_dummyLabelClass · 0.85
_dummyEntryClass · 0.85
_dummyButtonClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected