I would like to separate my model (property) from the view (gtk widget).
For example: my model has a "level" property.
I would like to bind the "level" to GtkScrollbar and to a GtkLabel so that a change to the variable e.g. self.level=5 will be reflected in the widgets and a change in the widgets will set the property.
This is common practice in many frameworks (WPF).
How to do this with python+gtk ? or is there a library for doing this binding?