4 """VariableText can be used for components which have a variable text, based on any widget with setText call"""
10 def setText(self, text):
13 self.instance.setText(self.message)
18 def GUIcreate(self, parent):
19 self.instance = self.createWidget(parent)
20 self.instance.setText(self.message)
23 self.removeWidget(self.instance)
26 def removeWidget(self, instance):