Qt FlowLayout升级版

Qt FlowLayout升级版

简述

最近因为工作需要,在flowlayout流布局上改进了下。专业词语不知道怎么称呼,暂且称为紧凑型布局吧。看看效果图

效果图

在这里插入图片描述

核心代码

int itemSize = itemList.size();
    for (int i = 0; i < itemSize; i++) {
        QWidget *wid = itemList[i]->widget();
        int spaceX = horizontalSpacing();
        if (spaceX == -1)
            spaceX = wid->style()->layoutSpacing(
                QSizePolicy::PushButton, QSizePolicy::PushButton, Qt::Horizontal);
        int spaceY = verticalSpacing();
        if (spaceY == -1)
            spaceY = wid->style()->layoutSpacing(
                QSizePolicy::PushButton, QSizePolicy::PushButton, Qt::Vertical);
//! [10]
//! [11]
//!

        if(itemList[i]->sizeHint().height() == 0) continue;
        int nextX = x + itemList[i]->sizeHint().width() + spaceX;
        int nextY = y;
        if(x > effectiveRect.x()){
            nextX = x;
            nextY = y + itemList[i]->sizeHint().height() + spaceY;

            if(nextY - spaceY >= preY + lineHeight && lineHeight > 0 && lineWidth > 0){
                x = x + lineWidth + spaceX;
                y = preY;
                nextX = x;
                nextY = y + itemList[i]->sizeHint().height() + spaceY;
                lineWidth = 0;
            }
            lineWidth = qMax(lineWidth, itemList[i]->sizeHint().width());
        }

        if (nextX + itemList[i]->sizeHint().width() > effectiveRect.right() && lineHeight > 0) {
            x = effectiveRect.x();
            y = preY + lineHeight + spaceY;
            preY = y;
            nextX = x + itemList[i]->sizeHint().width() + spaceX;
            nextY = y;
            lineHeight = 0;
            lineWidth = 0;
        }

        if (!testOnly)
        {
            itemList[i]->setGeometry(QRect(QPoint(x, y), itemList[i]->sizeHint()));
        }
        
		lineHeight = qMax(lineHeight, itemList[i]->sizeHint().height());
        x = nextX;
        y = nextY;
    }

QQ群

Qt交流大会 853086607 (收费群,用于后期升级群费用)
在这里插入图片描述

结尾

不定期上传新作品,解答群中作品相关问题。相关外,能解答则解答。欢迎大家一起探索Qt世界!相关工程,可以联系博主雨田哥:3246214072

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

雨田哥

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值