如何在响应式 QVBoxLayout 中获取 QWidget 的当前宽度?

How to get current width of QWidget inside responsive QVBoxLayout?

我目前正在尝试调整垂直滚动条的步长以适应可滚动和响应 QVBoxLayout 中对象的高度。因此,一个滚动步骤正好向下滚动一个小部件。 QVBoxLayout 中的所有对象都具有相同的几何形状。

因此,我需要 QVBoxLayout 中对象之一的当前(实时)高度。我已经尝试过以下方法:

对象初始化为高度300(不固定)。 然后通过调整 window 包括 QVBoxLayout.

的大小来动态调整高度
QWidget* pWidget = PointerToMyWidgetInsideQVBoxLayout;
std::cout << "height:" << pWidget->height() << std::endl; /// @todo PHIL: height gives only initial value, not current height
std::cout << "geometry-height:" << pWidget->geometry().height() << std::endl;
std::cout << "frameSize-height:" << pWidget->frameSize().height() << std::endl;
std::cout << "frameGeometry-height:" << pWidget->frameGeometry().height() << std::endl;
std::cout << "normalGeometryheight:" << pWidget->normalGeometry().height() << std::endl;
std::cout << "minimumHeight-height:" << pWidget->minimumHeight() << std::endl;
std::cout << "maximumHeight-height:" << pWidget->maximumHeight() << std::endl;
std::cout << "sizeHint-height:" << pWidget->sizeHint().height() << std::endl;

这导致以下输出:

height:300
geometry-height:300
frameSize-height:300
frameGeometry-height:300
normalGeometryheight:300
minimumHeight-height:0
maximumHeight-height:16777215
sizeHint-height:50

非常感谢您的帮助!

方法 QWidget::height() returns 小部件的实际大小,不仅是初始化时的大小:请参阅此 answer