2011-04-27 09:05:54 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2011-10-17 09:57:07 +02:00
|
|
|
* Copyright (C) 2010-2011 David Rosca
|
2011-04-27 09:05:54 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-04-22 16:03:38 +02:00
|
|
|
#include "desktopnotificationsfactory.h"
|
2011-04-23 22:33:25 +02:00
|
|
|
#include "desktopnotification.h"
|
|
|
|
#include "mainapplication.h"
|
2011-04-22 16:03:38 +02:00
|
|
|
|
2011-04-23 22:33:25 +02:00
|
|
|
DesktopNotificationsFactory::DesktopNotificationsFactory(QObject* parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, m_uint(0)
|
2011-04-22 16:03:38 +02:00
|
|
|
{
|
2011-04-23 22:33:25 +02:00
|
|
|
loadSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DesktopNotificationsFactory::loadSettings()
|
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
QSettings settings(mApp->getActiveProfilPath() + "settings.ini", QSettings::IniFormat);
|
2011-04-23 22:33:25 +02:00
|
|
|
settings.beginGroup("Notifications");
|
|
|
|
m_enabled = settings.value("Enabled", true).toBool();
|
|
|
|
m_timeout = settings.value("Timeout", 6000).toInt();
|
2011-04-27 09:05:54 +02:00
|
|
|
#ifdef Q_WS_X11
|
2011-04-23 22:33:25 +02:00
|
|
|
m_notifType = settings.value("UseNativeDesktop", true).toBool() ? DesktopNative : PopupWidget;
|
|
|
|
#else
|
|
|
|
m_notifType = PopupWidget;
|
|
|
|
#endif
|
|
|
|
m_position = settings.value("Position", QPoint(10, 10)).toPoint();
|
|
|
|
settings.endGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DesktopNotificationsFactory::notify(const QPixmap &icon, const QString &heading, const QString &text)
|
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!m_enabled) {
|
2011-04-24 22:40:35 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-04-24 22:40:35 +02:00
|
|
|
|
2011-04-23 22:33:25 +02:00
|
|
|
switch (m_notifType) {
|
|
|
|
case PopupWidget:
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!m_desktopNotif) {
|
2011-04-23 22:33:25 +02:00
|
|
|
m_desktopNotif = new DesktopNotification();
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-04-23 22:33:25 +02:00
|
|
|
m_desktopNotif->setPixmap(icon);
|
|
|
|
m_desktopNotif->setHeading(heading);
|
|
|
|
m_desktopNotif->setText(text);
|
|
|
|
m_desktopNotif->setTimeout(m_timeout);
|
2011-04-24 22:40:35 +02:00
|
|
|
m_desktopNotif->move(m_position);
|
2011-04-23 22:33:25 +02:00
|
|
|
m_desktopNotif->show();
|
|
|
|
break;
|
|
|
|
case DesktopNative:
|
2011-04-29 17:47:55 +02:00
|
|
|
#ifdef Q_WS_X11
|
2011-04-24 22:40:35 +02:00
|
|
|
QFile tmp(QDir::tempPath() + "/qupzilla_notif.png");
|
|
|
|
tmp.open(QFile::WriteOnly);
|
|
|
|
icon.save(tmp.fileName());
|
|
|
|
|
2011-04-23 22:33:25 +02:00
|
|
|
QDBusInterface dbus("org.freedesktop.Notifications", "/org/freedesktop/Notifications", "org.freedesktop.Notifications", QDBusConnection::sessionBus());
|
|
|
|
QVariantList args;
|
|
|
|
args.append("qupzilla");
|
|
|
|
args.append(m_uint);
|
2011-04-24 22:40:35 +02:00
|
|
|
args.append(tmp.fileName());
|
2011-04-23 22:33:25 +02:00
|
|
|
args.append(heading);
|
|
|
|
args.append(text);
|
|
|
|
args.append(QStringList());
|
|
|
|
args.append(QVariantMap());
|
|
|
|
args.append(m_timeout);
|
|
|
|
QDBusMessage message = dbus.callWithArgumentList(QDBus::Block, "Notify", args);
|
|
|
|
QVariantList list = message.arguments();
|
2011-11-06 17:01:23 +01:00
|
|
|
if (list.count() > 0) {
|
2011-04-23 22:33:25 +02:00
|
|
|
m_uint = list.at(0).toInt();
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-04-29 17:47:55 +02:00
|
|
|
#endif
|
2011-04-23 22:33:25 +02:00
|
|
|
break;
|
|
|
|
}
|
2011-04-22 16:03:38 +02:00
|
|
|
}
|