Ejemplo n.º 1
0
 def __init__(self, id, lang=None, **kwargs):
     Widget.__init__(self, id, lang, **kwargs)
     self.set_localproperty('choices', 'lines', lang, [])
     self.set_localproperty('rows', 'lines', lang, [])
Ejemplo n.º 2
0
 def __init__(self, id, lang=None, **kwargs):
     Widget.__init__(self, id, lang, **kwargs)
     self.set_localproperty('text', 'text', lang)
     self.imageContainer = NyImageContainer(self, False)
Ejemplo n.º 3
0
 def __init__(self, id, lang=None, **kwargs):
     self.set_localproperty('choices', 'lines', lang, [])
     Widget.__init__(self, id, lang, **kwargs)
Ejemplo n.º 4
0
 def __init__(self, id, lang=None, **kwargs):
     Widget.__init__(self, id, lang, **kwargs)
     choices = kwargs.get('choices', [])
     self.set_localproperty('choices', 'lines', lang, choices)
     rows = kwargs.get('rows', [])
     self.set_localproperty('rows', 'lines', lang, rows)