qt实现带数字的消息通知

cpp 复制代码
#include <QPushButton>
#include <QLabel>
#include <QHBoxLayout>

class BadgeButton : public QPushButton
{
    Q_OBJECT
public:
    explicit BadgeButton(QWidget *parent = nullptr) : QPushButton(parent)
    {
        // 创建提示徽章(红色背景+数字)
        m_badge = new QLabel(this);
        m_badge->setStyleSheet(R"(
            background-color: red;
            color: white;
            border-radius: 8px;  /* 圆角 */
            font-size: 12px;
            padding: 0px 4px;    /* 左右留白,让数字居中 */
        )");
        m_badge->setAlignment(Qt::AlignCenter);  // 文字居中
        m_badge->hide();  // 默认隐藏
    }

    // 设置未读数量(0则隐藏,>9显示"9+")
    void setUnreadCount(int count)
    {
        if (count <= 0) {
            m_badge->hide();
            return;
        }
        // 超过9条显示"9+"
        m_badge->setText(count > 9 ? "9+" : QString::number(count));
        // 调整徽章大小(根据文字长度自动适应)
        m_badge->adjustSize();
        // 确保最小尺寸(至少能显示一个数字)
        m_badge->setMinimumSize(16, 16);
        m_badge->show();
        // 更新位置
        updateBadgePosition();
    }

protected:
    // 按钮大小改变时更新徽章位置
    void resizeEvent(QResizeEvent *event) override
    {
        QPushButton::resizeEvent(event);
        updateBadgePosition();
    }

private:
    QLabel *m_badge;

    // 更新徽章到右上角
    void updateBadgePosition()
    {
        if (!m_badge->isVisible()) return;
        // 右上角定位(向右上方偏移,避免完全贴边)
        int x = width() - m_badge->width() + 2;  // 右偏移2px(部分超出按钮边缘更美观)
        int y = -m_badge->height() / 2;          // 上偏移一半高度(部分超出顶部)
        m_badge->move(x, y);
    }
};

使用方法

cpp 复制代码
BadgeButton *btn = new BadgeButton(this);
btn->setText("消息");
btn->setGeometry(50, 50, 100, 40);
btn->setUnreadCount(3);  // 显示3条未读
// btn->setUnreadCount(15);  // 显示"9+"
相关推荐
小温冲冲10 小时前
QtObject 详解:QML 中的轻量级数据容器
qt
huwei85311 小时前
Q打印表格内容类
开发语言·qt
Quz15 小时前
QML 常用的基础容器组件(Pane、Frame、GroupBox、ScrollView 和 Page)
qt·交互
墨月白15 小时前
[QT] QT中的折线图和散点图
数据库·qt
问水っ16 小时前
Qt Creator快速入门 第三版 第16-7章 其他内容
开发语言·qt
Tianwen_Burning16 小时前
qt控件QVTKOpenGLNativeWidget全窗口显示
qt·pcl·halcon3d
小CC吃豆子18 小时前
Qt的信号与槽机制
开发语言·数据库·qt
qq_4017004118 小时前
Qt属性系统
开发语言·数据库·qt
默默前行的虫虫19 小时前
QT、html中的大屏可视化带源码
qt
郝学胜-神的一滴19 小时前
Qt实现圆角窗口的两种方案详解
开发语言·c++·qt·程序人生