Mercurial > trustbridge
view ui/trayicon.cpp @ 910:eaed02defe6a
More SSLConnection refactoring. Fixes curl downloader.
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Mon, 18 Aug 2014 18:51:33 +0200 |
parents | 4efd6378c001 |
children | c096881e8ed0 |
line wrap: on
line source
/* Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=2) * and comes with ABSOLUTELY NO WARRANTY! * See LICENSE.txt for details. */ #include "trayicon.h" #include <QMessageBox> #include <QSystemTrayIcon> #include <QDebug> #include <QAbstractButton> #include <QMainWindow> TrayIcon::TrayIcon (QObject *parent) : QSystemTrayIcon (parent), useAlt(false) { if (QSystemTrayIcon::isSystemTrayAvailable() && qgetenv("XDG_CURRENT_DESKTOP") != "Unity") { return; } qDebug() << "Platform is without systray. Using Alternative notifications"; useAlt = true; } void TrayIcon::show() { if (useAlt) { qDebug() << "Would show"; return; } QSystemTrayIcon::show(); } void TrayIcon::showMessage(const QString &title, const QString &msg, QSystemTrayIcon::MessageIcon msg_icon, int msecs) { if (!useAlt) { QSystemTrayIcon::showMessage(title, msg, msg_icon, msecs); return; } QMessageBox *theMessage = new QMessageBox (QMessageBox::Information, title, msg, QMessageBox::Ok | QMessageBox::No, qobject_cast<QWidget*>(parent())); theMessage->setIconPixmap (icon().pixmap(theMessage->iconPixmap().size())); theMessage->button(QMessageBox::Ok)->setText (tr("Install update")); theMessage->button(QMessageBox::No)->setText (tr("Remind me later")); connect(theMessage->button(QMessageBox::Ok), SIGNAL(clicked()), this, SIGNAL(messageClicked())); theMessage->show(); }