コード例 #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
コード例 #3
0
 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)