+ if "split" in attrib:
+ self.split = int(value)
+ if self.split:
+ self.right_text = eLabel(self.instance)
+ if "colposition" in attrib:
+ self.column = int(value)
+ if "dividechar" in attrib:
+ self.splitchar = value
+ if self.split:
+ skin.applyAllAttributes(self.long_text, desktop, self.skinAttributes + [("halign", "left")], parent.scale)
+ skin.applyAllAttributes(self.right_text, desktop, self.skinAttributes + [("transparent", "1"), ("halign", "left" and self.column or "right")], parent.scale)
+ else:
+ skin.applyAllAttributes(self.long_text, desktop, self.skinAttributes, parent.scale)