When the slider value is changed, call *func* with the new slider position A connection id is returned which can be used to disconnect
(self, obj)
| 122 | |
| 123 | |
| 124 | def add_observer(self, obj): |
| 125 | """ |
| 126 | When the slider value is changed, call *func* with the new |
| 127 | slider position |
| 128 | |
| 129 | A connection id is returned which can be used to disconnect |
| 130 | """ |
| 131 | self.observers[obj.name] = obj |
| 132 | |
| 133 | |
| 134 | def remove_observer(self, cid): |
no outgoing calls
no test coverage detected