1 class VariableValue(object):
2 """VariableValue can be used for components which have a variable value (like eSlider), based on any widget with setValue call"""
7 def setValue(self, value):
10 self.instance.setValue(self.__value)
15 def postWidgetCreate(self, instance):
18 self.instance.setValue(self.__value)
20 value = property(getValue, setValue)