19

我想创建一个包含两种布局的 Qt 窗口,一种是固定高度,其中包含顶部的按钮列表,另一种是填充剩余空间的布局,该布局使小部件垂直和水平居中,如下图所示。

示例 Qt 布局

我应该如何布置我的布局/小部件。我尝试了一些嵌套水平和垂直布局的选项,但无济于事

4

1 回答 1

29

尝试使用 QHBoxLayout 使粉红色框成为 QWidget(而不仅仅是使其成为布局)。原因是 QLayouts 不提供固定大小的功能,但 QWidgets 提供。

// first create the four widgets at the top left,
// and use QWidget::setFixedWidth() on each of them.

// then set up the top widget (composed of the four smaller widgets):
QWidget *topWidget = new QWidget;
QHBoxLayout *topWidgetLayout = new QHBoxLayout(topWidget);
topWidgetLayout->addWidget(widget1);
topWidgetLayout->addWidget(widget2);
topWidgetLayout->addWidget(widget3);
topWidgetLayout->addWidget(widget4);
topWidgetLayout->addStretch(1); // add the stretch
topWidget->setFixedHeight(50);

// now put the bottom (centered) widget into its own QHBoxLayout
QHBoxLayout *hLayout = new QHBoxLayout;
hLayout->addStretch(1);
hLayout->addWidget(bottomWidget);
hLayout->addStretch(1);
bottomWidget->setFixedSize(QSize(50, 50));

// now use a QVBoxLayout to lay everything out
QVBoxLayout *mainLayout = new QVBoxLayout;
mainLayout->addWidget(topWidget);
mainLayout->addStretch(1);
mainLayout->addLayout(hLayout);
mainLayout->addStretch(1);

如果你真的想要两个独立的布局——一个用于粉红色框,一个用于蓝色框——这个想法基本上是相同的,除了你将蓝色框变成它自己的 QVBoxLayout,然后使用:

mainLayout->addWidget(topWidget);
mainLayout->addLayout(bottomLayout);
于 2012-08-17T16:27:41.927 回答