Exemplo n.º 1
0
 def __init__(self, name, x, y, width, height):
     _Widget.__init__(self, 'arc', name, x, y, width, height)
Exemplo n.º 2
0
 def __init__(self, name, pv_name, x, y, width, height):
     _Widget.__init__(self, 'meter', name, x, y, width, height)
     self.pv_name(pv_name)
Exemplo n.º 3
0
 def __init__(self, name, url, x, y, width, height):
     _Widget.__init__(self, 'webbrowser', name, x, y, width, height)
     self.url(url)
Exemplo n.º 4
0
 def __init__(self, name, x, y, width, height):
     _Widget.__init__(self, 'rectangle', name, x, y, width, height)
Exemplo n.º 5
0
 def __init__(self, name, file, x, y, width, height):
     _Widget.__init__(self, 'picture', name, x, y, width, height)
     self.file(file)
Exemplo n.º 6
0
 def __init__(self, name, file, x, y, width, height):
     _Widget.__init__(self, '3dviewer', name, x, y, width, height)
     self.file(file)
Exemplo n.º 7
0
 def __init__(self, name, file, x, y, width, height):
     _Widget.__init__(self, 'databrowser', name, x, y, width, height)
     self.file(file)
Exemplo n.º 8
0
 def __init__(self, name, x, y, width, height):
     _Widget.__init__(self, 'ellipse', name, x, y, width, height)
Exemplo n.º 9
0
 def __init__(self, name, label, pv_name, x, y, width, height):
     _Widget.__init__(self, 'slide_button', name, x, y, width, height)
     self.pv_name(pv_name)
     self.label(label)
Exemplo n.º 10
0
 def __init__(self, name, text, x, y, width, height):
     _Widget.__init__(self, 'label', name, x, y, width, height)
     self.text(text)
Exemplo n.º 11
0
 def __init__(self, name, pv_name, x, y, width, height):
     _Widget.__init__(self, 'fileselector', name, x, y, width, height)
     self.pv_name(pv_name)
Exemplo n.º 12
0
 def __init__(self, name, label, pv_name, x, y, width, height):
     _Widget.__init__(self, 'checkbox', name, x, y, width, height)
     self.pv_name(pv_name)
     self.label(label)
Exemplo n.º 13
0
 def __init__(self, name, pv_name, x, y, width, height):
     _Widget.__init__(self, 'bool_button', name, x, y, width, height)
     self.pv_name(pv_name)
Exemplo n.º 14
0
 def __init__(self, name, pv_name, x, y, width, height):
     _Widget.__init__(self, 'progressbar', name, x, y, width, height)
     self.pv_name(pv_name)
Exemplo n.º 15
0
 def __init__(self, name, file, x, y, width, height):
     _Widget.__init__(self, 'embedded', name, x, y, width, height)
     self.file(file)
Exemplo n.º 16
0
 def __init__(self, name, pv_name, x, y, width, height):
     _Widget.__init__(self, 'textupdate', name, x, y, width, height)
     self.pv_name(pv_name)
Exemplo n.º 17
0
 def __init__(self, name, text, pv_name, x, y, width, height):
     _Widget.__init__(self, 'action_button', name, x, y, width, height)
     self.pv_name(pv_name)
     self.text(text)