Beispiel #1
0
 def sizeHint(self):
     return Dialog.sizeHint(self) + QSize(100, 50)
Beispiel #2
0
 def sizeHint(self):
     ans = Dialog.sizeHint(self)
     ans.setWidth(600)
     return ans
Beispiel #3
0
 def sizeHint(self):
     ans = Dialog.sizeHint(self)
     ans.setWidth(600)
     return ans
 def sizeHint(self):
     return Dialog.sizeHint(self) + QSize(100, 50)
 def sizeHint(self):
     ans = Dialog.sizeHint(self)
     ans.setHeight(600)
     ans.setWidth(max(ans.width(), 800))
     return ans
Beispiel #6
0
 def sizeHint(self):
     ans = Dialog.sizeHint(self)
     ans.setHeight(600)
     ans.setWidth(max(ans.width(), 800))
     return ans
Beispiel #7
0
 def sizeHint(self):
     ans = Dialog.sizeHint(self)
     ans.setWidth(ans.width() + 250)
     ans.setHeight(ans.height() + 200)
     return ans
Beispiel #8
0
 def sizeHint(self):
     return Dialog.sizeHint(self) + QSize(30, 100)