Esempio n. 1
0
 def __init__(self, preferred_size=None, *args, **kw):
     if preferred_size is not None:
         self.fixed_preferred_size = preferred_size
     PlotComponent.__init__(self, *args, **kw)
Esempio n. 2
0
 def __init__(self, bounds, *args, **kw):
     kw["bounds"] = bounds
     if "resizable" not in kw:
         kw["resizable"] = ""
     PlotComponent.__init__(self, *args, **kw)
     return
Esempio n. 3
0
 def __init__(self, bounds, *args, **kw):
     kw["bounds"] = bounds
     if not kw.has_key("resizable"):
         kw["resizable"] = ""
     PlotComponent.__init__(self, *args, **kw)
     return
Esempio n. 4
0
 def __init__(self, preferred_size=None, *args, **kw):
     if preferred_size is not None:
         self.fixed_preferred_size = preferred_size
     PlotComponent.__init__(self, *args, **kw)
Esempio n. 5
0
 def __init__(self, bounds, *args, **kw):
     kw["bounds"] = bounds
     if "resizable" not in kw:
         kw["resizable"] = ""
     PlotComponent.__init__(self, *args, **kw)
     return
Esempio n. 6
0
 def __init__(self, bounds, *args, **kw):
     kw["bounds"] = bounds
     if not kw.has_key("resizable"):
         kw["resizable"] = ""
     PlotComponent.__init__(self, *args, **kw)
     return