Esempio n. 1
0
 def __init__(self, name, x, y, width, height):
     _Widget.__init__(self, 'arc', name, x, y, width, height)
Esempio 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)
Esempio n. 3
0
 def __init__(self, name, url, x, y, width, height):
     _Widget.__init__(self, 'webbrowser', name, x, y, width, height)
     self.url(url)
Esempio n. 4
0
 def __init__(self, name, x, y, width, height):
     _Widget.__init__(self, 'rectangle', name, x, y, width, height)
Esempio n. 5
0
 def __init__(self, name, file, x, y, width, height):
     _Widget.__init__(self, 'picture', name, x, y, width, height)
     self.file(file)
Esempio n. 6
0
 def __init__(self, name, file, x, y, width, height):
     _Widget.__init__(self, '3dviewer', name, x, y, width, height)
     self.file(file)
Esempio n. 7
0
 def __init__(self, name, file, x, y, width, height):
     _Widget.__init__(self, 'databrowser', name, x, y, width, height)
     self.file(file)
Esempio n. 8
0
 def __init__(self, name, x, y, width, height):
     _Widget.__init__(self, 'ellipse', name, x, y, width, height)
Esempio 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)
Esempio n. 10
0
 def __init__(self, name, text, x, y, width, height):
     _Widget.__init__(self, 'label', name, x, y, width, height)
     self.text(text)
Esempio 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)
Esempio 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)
Esempio 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)
Esempio 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)
Esempio n. 15
0
 def __init__(self, name, file, x, y, width, height):
     _Widget.__init__(self, 'embedded', name, x, y, width, height)
     self.file(file)
Esempio 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)
Esempio 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)