예제 #1
0
파일: GControls.py 프로젝트: mnabeelp/PyGUI
 def __init__(self, font=None, lines=None, **kwds):
     Component.__init__(self, **kwds)
     #  If font and lines are both specified, must set font first.
     if font:
         self.font = font
     if lines is not None:
         self.lines = lines
예제 #2
0
 def __init__(self, font = None, lines = None, **kwds):
     Component.__init__(self, **kwds)
     #  If font and lines are both specified, must set font first.
     if font:
         self.font = font
     if lines is not None:
         self.lines = lines
 def __init__(self, **kw):
     self._contents = []
     Component.__init__(self, **kw)
예제 #4
0
 def __init__(self, **kwds):
     Component.__init__(self, **kwds)
     ViewBase.__init__(self)
예제 #5
0
파일: GGLViews.py 프로젝트: mnabeelp/PyGUI
 def __init__(self, **kwds):
     Component.__init__(self, **kwds)
     ViewBase.__init__(self)
예제 #6
0
 def __init__(self, **kw):
     self._contents = []
     Component.__init__(self, **kw)