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