# qt-notify **Repository Path**: zinface/qt-notify ## Basic Information - **Project Name**: qt-notify - **Description**: 基于Qt的提醒工具 - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 130 - **Created**: 2023-06-14 - **Last Updated**: 2025-01-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # qt-notify [![Please don't upload to GitHub](https://nogithub.codeberg.page/badge.svg)](https://nogithub.codeberg.page) Simple notifications for qt apps ![](assets/20230614221154.png) ```c++ // 图中逻辑 QPushButton * button = new QPushButton("弹窗", this); NotifyManager *manager = new NotifyManager(this); connect(button, &QPushButton::clicked, manager, [manager]{ // manager->notify(title, body, icon, url); manager->notify("新消息", "新消息新消息新消息新消息", "://assets/message.png", "http://www.github.com"); }); ``` ```c++ // 使用模式 NotifyManager *manager = new NotifyManager(this); manager->notify(title, body, icon, url); ```