Don't make KDE notifications persistent
[quassel.git] / src / qtui / knotificationbackend.cpp
1 /***************************************************************************
2 *   Copyright (C) 2005-09 by the Quassel Project                          *
3 *   devel@quassel-irc.org                                                 *
4 *                                                                         *
5 *   This program is free software; you can redistribute it and/or modify  *
6 *   it under the terms of the GNU General Public License as published by  *
7 *   the Free Software Foundation; either version 2 of the License, or     *
8 *   (at your option) version 3.                                           *
9 *                                                                         *
10 *   This program is distributed in the hope that it will be useful,       *
11 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13 *   GNU General Public License for more details.                          *
14 *                                                                         *
15 *   You should have received a copy of the GNU General Public License     *
16 *   along with this program; if not, write to the                         *
17 *   Free Software Foundation, Inc.,                                       *
18 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19 ***************************************************************************/
20
21 #include <QVBoxLayout>
22
23 #include <KNotification>
24 #include <KNotifyConfigWidget>
25 #include <QTextDocument>
26
27 #include "knotificationbackend.h"
28
29 #include "client.h"
30 #include "icon.h"
31 #include "iconloader.h"
32 #include "networkmodel.h"
33 #include "qtui.h"
34 #include "systemtray.h"
35
36 KNotificationBackend::KNotificationBackend(QObject *parent) : AbstractNotificationBackend(parent) {
37
38 }
39
40 void KNotificationBackend::notify(const Notification &n) {
41   QString type;
42   switch(n.type) {
43     case Highlight:
44       type = "Highlight"; break;
45     case HighlightFocused:
46       type = "HighlightFocused"; break;
47     case PrivMsg:
48       type = "PrivMsg"; break;
49     case PrivMsgFocused:
50       type = "PrivMsgFocused"; break;
51   }
52
53   QString message = QString("<b>&lt;%1&gt;</b> %2").arg(n.sender, Qt::escape(n.message));
54   KNotification *notification = KNotification::event(type, message, DesktopIcon("dialog-information"), QtUi::mainWindow(),
55                                 KNotification::RaiseWidgetOnActivation
56                                |KNotification::CloseWhenWidgetActivated
57                                |KNotification::CloseOnTimeout);
58   connect(notification, SIGNAL(activated(uint)), SLOT(notificationActivated()));
59   connect(notification, SIGNAL(closed()), SLOT(notificationClosed()));
60   notification->setActions(QStringList("View"));
61   _notificationIds[notification] = n.notificationId;
62
63   QtUi::mainWindow()->systemTray()->setAlert(true);
64 }
65
66 void KNotificationBackend::close(uint notificationId) {
67   Q_UNUSED(notificationId);
68   QtUi::mainWindow()->systemTray()->setAlert(false);
69 }
70
71 void KNotificationBackend::notificationActivated() {
72   uint id = 0;
73   KNotification *n = qobject_cast<KNotification *>(sender());
74   if(n && _notificationIds.contains(n))
75     id = _notificationIds.value(n);
76
77   emit activated(id);
78 }
79
80 void KNotificationBackend::notificationClosed() {
81   KNotification *n = qobject_cast<KNotification *>(sender());
82   if(n && _notificationIds.contains(n))
83     _notificationIds.remove(n);
84 }
85
86 SettingsPage *KNotificationBackend::createConfigWidget() const {
87   return new ConfigWidget();
88 }
89
90 /***************************************************************************/
91
92 KNotificationBackend::ConfigWidget::ConfigWidget(QWidget *parent) : SettingsPage("Internal", "KNotification", parent) {
93   _widget = new KNotifyConfigWidget(this);
94   _widget->setApplication("quassel");
95
96   QVBoxLayout *layout = new QVBoxLayout(this);
97   layout->addWidget(_widget);
98
99   connect(_widget, SIGNAL(changed(bool)), SLOT(widgetChanged(bool)));
100 }
101
102 void KNotificationBackend::ConfigWidget::widgetChanged(bool changed) {
103   setChangedState(changed);
104 }
105
106 void KNotificationBackend::ConfigWidget::load() {
107   setChangedState(false);
108 }
109
110 void KNotificationBackend::ConfigWidget::save() {
111   _widget->save();
112   load();
113 }