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