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