예제 #1
0
 def __init__(self, title, node):
     Row.__init__(self)
     self.input = InputSlot(node).append_to(self)
     Label(title).append_to(self)
예제 #2
0
 def __init__(self, title, start):
     Row.__init__(self)
     Label(title).append_to(self)
     self.slider = Slider(start=start).append_to(self)
예제 #3
0
 def __init__(self, title, checked=False):
     Row.__init__(self)
     Label(title).append_to(self)
     self.checkbox = Checkbox(checked=checked).append_to(self)
예제 #4
0
 def __init__(self, application):
     Row.__init__(self)
     self.application = application
     self.col1 = Column().append_to(self)
     self.col2 = Column().append_to(self)