You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
350 B
10 lines
350 B
#include "notifications.hpp" |
|
|
|
#include "mainwindow.hpp" |
|
#include <QStatusBar> |
|
|
|
void notifications::notify(QString title, QString body, QSystemTrayIcon::MessageIcon icon) { |
|
if (!MainWindow::inst()) return; |
|
MainWindow::inst()->tray->showMessage(title, body, icon, 5000); |
|
MainWindow::inst()->statusBar()->showMessage(title + ": " + body); |
|
}
|
|
|