(self, master=None, cnf={}, **kw)
| 526 | |
| 527 | # FIXME: It should inherit -superclass tixShell |
| 528 | def __init__(self, master=None, cnf={}, **kw): |
| 529 | # static seem to be -installcolormap -initwait -statusbar -cursor |
| 530 | static = ['options', 'installcolormap', 'initwait', 'statusbar', |
| 531 | 'cursor'] |
| 532 | TixWidget.__init__(self, master, 'tixBalloon', static, cnf, kw) |
| 533 | self.subwidget_list['label'] = _dummyLabel(self, 'label', |
| 534 | destroy_physically=0) |
| 535 | self.subwidget_list['message'] = _dummyLabel(self, 'message', |
| 536 | destroy_physically=0) |
| 537 | |
| 538 | def bind_widget(self, widget, cnf={}, **kw): |
| 539 | """Bind balloon widget to another. |
nothing calls this directly
no test coverage detected