How is it possible to maintain widgets aspect ratio in Qt and what about centering the widget?
|
5
|
|
|
|
|
|
The right answer is to create your custom layout manager. That is possible by subclassing QLayout. Methods to implement when subclassing QLayout
Further reading |
||||
|
|
|
Calling I think the "correct" way to maintain a fixed aspect ratio is to create a custom layout. You'll have to override just two methods, |
||
|
|
|
You don't have to implement your own layout manager. You can do with inheriting
to stay square. However, |
||||
|
