예제 #1
0
파일: mock.py 프로젝트: Niriel/pynguin
 def __init__(self, width, height):
     """Initialize the new MockWidget and give it a size."""
     Sizeable.__init__(self)
     Parentable.__init__(self)
     self.width = width
     self.height = height
     self.requested_size = None
     self.allocated_size = None
예제 #2
0
 def __init__(self):
     """Initializes a new widget."""
     Sizeable.__init__(self)
     Parentable.__init__(self)
     Widget.__init__(self)