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