3 class VariableValue(object):
4 """VariableValue can be used for components which have a variable value (like eSlider), based on any widget with setValue call"""
9 def setValue(self, value):
12 self.instance.setValue(self.__value)
17 def postWidgetCreate(self, instance):
20 self.instance.setValue(self.__value)
22 value = property(getValue, setValue)