Qt C++ QStatusbar 显示表示状态的图片

1、前言

在C++ Qt编程中默认主窗口MainWindow底下自带控件QStatusbar,很多情况下都使用其显示程序的连接状态或开关状态,因为时常需要将图片设置为圆形显示,所以这里记录一下常用的设置的代码,方便以后复制粘贴。

2、封装设置状态的函数

(1)使用遮罩将图片设置成圆形

cpp 复制代码
QPixmap Utils::createCircularPixmap(const QPixmap &src, int diameter)
{
    // 创建一个圆形的 QBitmap
    QBitmap mask(diameter, diameter);
    mask.fill(Qt::color0);

    QPainter painter(&mask);
    painter.setRenderHint(QPainter::Antialiasing);
    painter.setBrush(Qt::color1);
    painter.drawEllipse(0, 0, diameter, diameter);
    painter.end();

    // 创建一个新的 QPixmap
    QPixmap circularPixmap(diameter, diameter);
    circularPixmap.fill(Qt::transparent);

    painter.begin(&circularPixmap);
    painter.setRenderHint(QPainter::Antialiasing);
    QPainterPath pathTemp;
    pathTemp.addEllipse(0, 0, diameter, diameter);
    painter.setClipPath(pathTemp);
    painter.drawPixmap(0, 0, diameter, diameter, src);
    painter.end();

    // 应用圆形遮罩
    circularPixmap.setMask(mask);

    return circularPixmap;
}

(2)调整大小并显示在QStatusbar中

cpp 复制代码
void Utils::statusbarSetPixmap(QStatusBar *statusbar, QString pixPath)
{
    QLabel *lastLabel = statusbar->findChild<QLabel *>(statusbar->objectName()+"_pixLabel");
    if(lastLabel != nullptr){
        delete lastLabel;
    }

    int statusbarSize = 30;//状态栏的大小,圆的直径?
    QLabel *imageLabel = new QLabel(/*qobject_cast<QWidget*>(*/statusbar/*->parent())*/);
    imageLabel->setFixedSize(statusbarSize, statusbarSize);
    imageLabel->setObjectName(statusbar->objectName()+"_pixLabel");

    QPixmap pixmap(pixPath);
    QPixmap pixmap2 = pixmap.scaled(statusbarSize, statusbarSize, Qt::KeepAspectRatio, Qt::SmoothTransformation);
    imageLabel->setPixmap(Utils::createCircularPixmap(pixmap2, statusbarSize));

    statusbar->addWidget(imageLabel);
}

3、调用

举例两张图片:

调用,这里以http服务器是否开启为例子:

cpp 复制代码
if(httpServerIsOpen){
    Utils::statusbarSetPixmap(ui->statusbar, httpTrueImg);//显示开启状态
}else{
    Utils::statusbarSetPixmap(ui->statusbar, httpFalseImg);//显示关闭状态
}

效果图:

相关推荐
0白露20 分钟前
Apifox Helper 与 Swagger3 区别
开发语言
Tanecious.1 小时前
机器视觉--python基础语法
开发语言·python
叠叠乐1 小时前
rust Send Sync 以及对象安全和对象不安全
开发语言·安全·rust
Tttian6223 小时前
Python办公自动化(3)对Excel的操作
开发语言·python·excel
Merokes4 小时前
关于Gstreamer+MPP硬件加速推流问题:视频输入video0被占用
c++·音视频·rk3588
独好紫罗兰4 小时前
洛谷题单2-P5713 【深基3.例5】洛谷团队系统-python-流程图重构
开发语言·python·算法
闪电麦坤955 小时前
C#:base 关键字
开发语言·c#
Mason Lin5 小时前
2025年3月29日(matlab -ss -lti)
开发语言·matlab
请来次降维打击!!!5 小时前
优选算法系列(5.位运算)
java·前端·c++·算法
别NULL5 小时前
机试题——统计最少媒体包发送源个数
c++·算法·媒体