2017-04-25 22:17:36 +02:00
|
|
|
#include "notifications.hpp"
|
|
|
|
|
|
|
|
#include "mainwindow.hpp"
|
|
|
|
#include <QStatusBar>
|
|
|
|
|
2017-05-09 17:26:00 +02:00
|
|
|
void notifications::notify(QString title, QString body, QSystemTrayIcon::MessageIcon icon) {
|
2017-05-22 15:56:47 +02:00
|
|
|
if (!MainWindow::inst()) return;
|
2017-05-09 17:26:00 +02:00
|
|
|
MainWindow::inst()->tray->showMessage(title, body, icon, 5000);
|
|
|
|
MainWindow::inst()->statusBar()->showMessage(title + ": " + body);
|
2017-04-25 22:17:36 +02:00
|
|
|
}
|