• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

在 Qt 保持小部件的纵横比?

用户头像
it1352
帮助3

问题说明

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

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

正确答案

#1

您不必实现自己的布局管理器.你可以继承 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.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcafghg
系列文章
更多 icon
同类精品
更多 icon
继续加载