如何在 Qt 中保持小部件的纵横比? [英] How to maintain widgets aspect ratio in Qt?

查看:68
本文介绍了如何在 Qt 中保持小部件的纵横比?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在 Qt 中保持小部件的纵横比以及居中小部件怎么样?

How is it possible to maintain widgets aspect ratio in Qt and what about centering the widget?

推荐答案

您不必实现自己的布局管理器.你可以继承 QWidget 并重新实现

You don't have to implement your own layout manager. You can do with inheriting QWidget and reimplementing

int QWidget::heightForWidth( int w ) { return w; }

保持正直.但是,heightForWidth() 在 X11 上的顶层窗口上不起作用,因为显然 X11 协议不支持它.至于居中,可以将Qt::AlignCenter作为QBoxLayout::addWidget()的第三个参数或QGridLayout::addWidget()的第五个参数传入.

to stay square. However, heightForWidth() doesn't work on toplevel windows on X11, since apparently the X11 protocol doesn't support that. As for centering, you can pass Qt::AlignCenter as the third parameter of QBoxLayout::addWidget() or the fifth parameter of QGridLayout::addWidget().

注意:至少在较新版本的 Qt 中,QWidget 不再具有 heightForWidthwidthForHeight(因此它们不能被覆盖),因此 setWidthForHeight(true)setHeightForWidth(true) 只对 QGraphicsLayout 的后代有效.

Note: In newer versions of Qt at least, QWidget does not have the heightForWidth or widthForHeight anymore (so they cannot be overriden), and therefore setWidthForHeight(true) or setHeightForWidth(true) only have an effect for descendants of QGraphicsLayout.

这篇关于如何在 Qt 中保持小部件的纵横比?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆