我想使我的小部件始终具有正方形大小。继this answer之后,我重写了QWidget::heightForWidth(),并且还在@peppe建议的构造函数中调用setHeightForWidth(true)。大小策略设置为Preferred,Preferred(水平和垂直大小均适用)。

但是,没有调用heightForWidth()。我做错了什么吗?

这是我的Widget类中的heightForWidth()声明:

virtual int heightForWidth(int) const;

这在Linux和Windows上发生。

最佳答案

您的小部件必须位于布局中。以下适用于Qt 4和5。

在Qt 4中,只有在布局中时,它才会强制顶层窗口的最小尺寸。

在Qt 5中,它不会强制顶层窗口的大小。可能有一个标志,或者是一个错误,但是我现在不记得了。

#include <QApplication>
#include <QWidget>
#include <QPainter>
#include <QDebug>
#include <QVBoxLayout>
#include <QFrame>

class Widget : public QWidget {
    mutable int m_ctr;
public:
    Widget(QWidget *parent = 0) : QWidget(parent), m_ctr(0) {
        QSizePolicy p(sizePolicy());
        p.setHeightForWidth(true);
        setSizePolicy(p);
    }
    int heightForWidth(int width) const {
        m_ctr ++;
        QApplication::postEvent(const_cast<Widget*>(this), new QEvent(QEvent::UpdateRequest));
        return qMax(width*2, 100);
    }
    QSize sizeHint() const {
        return QSize(300, heightForWidth(300));
    }
    void paintEvent(QPaintEvent *) {
        QPainter p(this);
        p.drawRect(rect().adjusted(0, 0, -1, -1));
        p.drawText(rect(), QString("h4w called %1 times").arg(m_ctr));
    }
};

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QWidget w;
    QVBoxLayout * l = new QVBoxLayout(&w);
    l->addWidget(new Widget);
    QFrame * btm = new QFrame;
    btm->setFrameShape(QFrame::Panel);
    btm->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
    l->addWidget(btm);
    w.show();
    return a.exec();
}

08-26 19:58