Example #1
0
 def sizeHint(self):
     return Dialog.sizeHint(self) + QSize(100, 50)
Example #2
0
 def sizeHint(self):
     ans = Dialog.sizeHint(self)
     ans.setWidth(600)
     return ans
Example #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
Example #6
0
 def sizeHint(self):
     ans = Dialog.sizeHint(self)
     ans.setHeight(600)
     ans.setWidth(max(ans.width(), 800))
     return ans
Example #7
0
 def sizeHint(self):
     ans = Dialog.sizeHint(self)
     ans.setWidth(ans.width() + 250)
     ans.setHeight(ans.height() + 200)
     return ans
Example #8
0
 def sizeHint(self):
     return Dialog.sizeHint(self) + QSize(30, 100)