(self, *args, **kwargs)
| 277 | """ This class allows to interconnect event signals """ |
| 278 | |
| 279 | def __init__(self, *args, **kwargs): |
| 280 | super(SignalConnectionManager, self).__init__(*args, **kwargs) |
| 281 | self.label = gui.Label('Signal connections', width='100%') |
| 282 | self.label.add_class("DialogTitle") |
| 283 | self.append(self.label) |
| 284 | self.listeners_list = [] |
| 285 | |
| 286 | def build_widget_list_from_tree(self, node): |
| 287 | self.listeners_list.append(node) |