1

我给出了以下最小示例代码。

主.cpp:

#include <QApplication>
#include "qt.h"

int main(int argc, char** argv)
{
    QApplication app(argc, argv);
    MyDialog mainWin;
    mainWin.show();
    return app.exec();
}

qt.cpp:

#include <QLabel>
#include "qt.h"

void MyDialog::setupUi()
{
    setCentralWidget(new QWidget);
    mainLayout = new QVBoxLayout( centralWidget() );
    centralWidget()->setLayout(mainLayout);

    // show the add new effect channel button
    QPushButton* newKnobBtn = new QPushButton("new", this );
    connect( newKnobBtn, SIGNAL(clicked()), this, SLOT(addNewKnob()));
    mainLayout->addWidget( newKnobBtn, 0, Qt::AlignRight );

    containerWidget = new QWidget(this);
    scrollArea = new QScrollArea(containerWidget);
    mainLayout->addWidget(containerWidget);

    scrollLayout = new QVBoxLayout(scrollArea);
    scrollArea->setLayout(scrollLayout);

    /*
    QSizePolicy pol;
    pol.setVerticalPolicy(QSizePolicy::Expanding);
    setSizePolicy(pol);
    */

    addNewKnob(); // to fit size initially
}

void MyDialog::addNewKnob()
{
    scrollLayout->addWidget(new QLabel("Hello World", this));
    /*
    containerWidget->adjustSize();
    adjustSize();
    */
}

qt.h:

#include <QMainWindow>
#include <QVBoxLayout>
#include <QScrollArea>
#include <QPushButton>

class MyDialog : public QMainWindow
{
    Q_OBJECT
private slots:
    void addNewKnob();
private:
    void setupUi();
    QVBoxLayout* mainLayout;
    QScrollArea* scrollArea;
    QVBoxLayout* scrollLayout;
    QWidget* containerWidget;
public:
    MyDialog( ) { setupUi(); }
};

编译:将所有内容放在一个目录中,键入

qmake -project && qmake && make

我有adjustSize()来自这里的解决方案,但它不起作用:(链接)。我注释掉的所有东西都是我尝试过但没有帮助的东西。

当一个新的标签被添加到时,我如何正确地制作containerWidget和成长?scrollLayoutscrollLayout

4

2 回答 2

2

这是一个适合我的简化版本:

qt.cpp:

#include <QLabel>
#include <QPushButton>
#include <QScrollArea>
#include "qt.h"

MyDialog::MyDialog()
{
    QWidget * mainWidget = new QWidget;
    QBoxLayout * mainLayout = new QVBoxLayout(mainWidget);
    setCentralWidget(mainWidget);

    // show the add new effect channel button
    QPushButton* newKnobBtn = new QPushButton("new");
    connect( newKnobBtn, SIGNAL(clicked()), this, SLOT(addNewKnob()));
    mainLayout->addWidget( newKnobBtn, 0, Qt::AlignRight );

    QScrollArea * scrollArea = new QScrollArea;
    scrollArea->setWidgetResizable(true);
    mainLayout->addWidget(scrollArea);

    QWidget * labelsWidget = new QWidget;
    labelsLayout = new QVBoxLayout(labelsWidget);
    scrollArea->setWidget(labelsWidget);

    addNewKnob(); // to fit size initially
}

void MyDialog::addNewKnob()
{
    labelsLayout->addWidget(new QLabel("Hello World"));
}

qt.h:

#include <QMainWindow>
#include <QBoxLayout>

class MyDialog : public QMainWindow
{
    Q_OBJECT

public:
    MyDialog( );

private slots:
    void addNewKnob();

private:
    QBoxLayout * labelsLayout;
};
于 2013-07-28T02:42:39.543 回答
0

containerWidget只有一个QScrollArea. 我不知道你为什么需要这个。但是,如果您出于某种原因需要此功能,则需要向此小部件添加布局以使布局正常工作。也不要为QScrollArea. 它已经在内部实现了布局。您应该改为添加scrollLayout到滚动区域的viewport()小部件。

当您构造布局并将小部件传递给其构造函数时,布局会自动分配给传递的小部件。你不应该setLayout在那之后打电话。此操作将无效并产生控制台警告。

于 2013-07-27T20:30:07.857 回答