qt布局设置(1,2,4,6,8,9,12,16等布局)
.h
#ifndef VIDEOSPACE_H
#define VIDEOSPACE_H
#include <QWidget>
#include <QComboBox>
#include <QGridLayout>
#include <QVBoxLayout>
#include <QFrame>
QT_BEGIN_NAMESPACE
namespace Ui { class VideoSpace; }
QT_END_NAMESPACE
class VideoSpace : public QWidget
{
Q_OBJECT
public:
VideoSpace(QWidget *parent = nullptr);
~VideoSpace();
private slots:
void updateLayout(const QString &text);
private:
Ui::VideoSpace *ui;
QGridLayout *gridLayout;
};
#endif // VIDEOSPACE_H
.cpp
#include "videospace.h"
#include "ui_videospace.h"
#include <QPushButton>
#include <QLabel>
#include <QtMath>
VideoSpace::VideoSpace(QWidget *parent)
: QWidget(parent)
, ui(new Ui::VideoSpace)
{
ui->setupUi(this);
// 创建下拉框
QComboBox *comboBox = new QComboBox(this);
comboBox->addItems({"1", "2", "4", "6", "8", "9", "12", "16"});
// 创建布局
QVBoxLayout *mainLayout = new QVBoxLayout(this);
mainLayout->addWidget(comboBox);
// 添加网格布局
gridLayout = new QGridLayout();
mainLayout->addLayout(gridLayout);
// 连接信号和槽
connect(comboBox, &QComboBox::currentTextChanged, this, &VideoSpace::updateLayout);
// 初始化布局
updateLayout(comboBox->currentText());
}
VideoSpace::~VideoSpace()
{
delete ui;
}
void VideoSpace::updateLayout(const QString &text)
{
// 清空当前布局
QLayoutItem *item;
while ((item = gridLayout->takeAt(0))) {
delete item->widget();
delete item;
}
int count = text.toInt();
int rows = static_cast<int>(qSqrt(count));
int cols = (count + rows - 1) / rows; // 向上取整
// 创建分屏
for (int i = 0; i < count; ++i) {
QFrame *frame = new QFrame();
frame->setFrameShape(QFrame::Box);
frame->setLineWidth(2);
frame->setStyleSheet("background-color: lightgray;");
gridLayout->addWidget(frame, i / cols, i % cols);
}
}
原文地址:https://blog.csdn.net/weixin_45413401/article/details/143825459
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!