41fce5cbdb50fe54b0466194965dd0d2fe84316b
[quassel.git] / src / qtui / indicatornotificationbackend.cpp
1 /***************************************************************************
2 *   Copyright (C) 2005-09 Canonical Ltd                                   *
3 *   author: aurelien.gateau@canonical.com                                 *
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 "indicatornotificationbackend.h"
22
23 #include <qindicateserver.h>
24 #include <qindicateindicator.h>
25
26 #include "client.h"
27 #include "clientsettings.h"
28 #include "mainwin.h"
29 #include "networkmodel.h"
30 #include "qtui.h"
31
32 #define STR(x) #x
33 #define XSTR(x) STR(x)
34
35 class Indicator : public QIndicate::Indicator {
36 public:
37   uint lastNotificationId;
38 };
39
40 IndicatorNotificationBackend::IndicatorNotificationBackend(QObject *parent)
41   : AbstractNotificationBackend(parent)
42 {
43   NotificationSettings notificationSettings;
44   _enabled = notificationSettings.value("Indicator/Enabled", false).toBool();
45
46   notificationSettings.notify("Indicator/Enabled", this, SLOT(enabledChanged(const QVariant &)));
47
48   _server = QIndicate::Server::defaultInstance();
49   _server->setType("message.irc");
50   QString desktopFile = QString("%1/%2.desktop")
51     .arg(XSTR(XDG_APPS_INSTALL_DIR))
52     .arg(QCoreApplication::applicationFilePath().section('/', -1));
53   _server->setDesktopFile(desktopFile);
54   connect(_server, SIGNAL(serverDisplay()), QtUi::mainWindow(), SLOT(forceActivated()));
55
56   if (_enabled) {
57     _server->show();
58   }
59 }
60
61 IndicatorNotificationBackend::~IndicatorNotificationBackend() {
62   qDeleteAll(_indicatorHash);
63 }
64
65 void IndicatorNotificationBackend::notify(const Notification &notification) {
66   if(!_enabled) {
67     return;
68   }
69   if (notification.type != Highlight && notification.type != PrivMsg) {
70     return;
71   }
72   BufferId bufferId = notification.bufferId;
73   Indicator *indicator = _indicatorHash.value(bufferId);
74   if(!indicator) {
75     indicator = new Indicator;
76     _indicatorHash.insert(bufferId, indicator);
77     connect(indicator, SIGNAL(display(QIndicate::Indicator*)),
78       SLOT(indicatorDisplayed(QIndicate::Indicator*)));
79   }
80   indicator->lastNotificationId = notification.notificationId;
81
82   BufferInfo::Type type = Client::networkModel()->bufferType(bufferId);
83   QString name;
84   if (type == BufferInfo::QueryBuffer) {
85     name = notification.sender;
86   } else {
87     name = QString("%1 (%2)")
88       .arg(Client::networkModel()->bufferName(bufferId))
89       .arg(notification.sender);
90   }
91   indicator->setNameProperty(name);
92
93   indicator->setTimeProperty(QDateTime::currentDateTime());
94
95   QModelIndex index = Client::networkModel()->bufferIndex(bufferId);
96   QVariant icon = QtUi::style()->bufferViewItemData(index, Qt::DecorationRole);
97   if (icon.canConvert<QPixmap>()) {
98     QImage image = icon.value<QPixmap>().toImage();
99     indicator->setIconProperty(image);
100   }
101
102   indicator->setDrawAttentionProperty(true);
103   indicator->show();
104 }
105
106 void IndicatorNotificationBackend::close(uint notificationId) {
107   // If we find an indicator whose lastNotificationId is notificationId, we
108   // delete it
109
110   IndicatorHash::Iterator
111     it = _indicatorHash.begin(),
112     end = _indicatorHash.end();
113   for (; it != end; ++it) {
114     if (it.value()->lastNotificationId == notificationId) {
115       break;
116     }
117   }
118   if (it == end) {
119     // Not found, maybe there was no indicator for this notification or another
120     // notification happened after
121     return;
122   }
123   _indicatorHash.erase(it);
124   delete it.value();
125 }
126
127 void IndicatorNotificationBackend::enabledChanged(const QVariant &v) {
128   _enabled = v.toBool();
129   if (_enabled) {
130     _server->show();
131     // TODO: Create indicators for existing highlighted buffers?
132   } else {
133     _server->hide();
134     qDeleteAll(_indicatorHash);
135   }
136 }
137
138 void IndicatorNotificationBackend::indicatorDisplayed(QIndicate::Indicator *_indicator) {
139   Indicator *indicator = static_cast<Indicator *>(_indicator);
140   emit activated(indicator->lastNotificationId);
141 }
142
143 SettingsPage *IndicatorNotificationBackend::createConfigWidget() const {
144   return new ConfigWidget();
145 }
146
147 /***************************************************************************/
148
149 IndicatorNotificationBackend::ConfigWidget::ConfigWidget(QWidget *parent)
150 : SettingsPage("Internal", "IndicatorNotification", parent)
151 {
152   ui.setupUi(this);
153
154   connect(ui.enabled, SIGNAL(toggled(bool)), SLOT(widgetChanged()));
155 }
156
157 IndicatorNotificationBackend::ConfigWidget::~ConfigWidget() {
158 }
159
160 void IndicatorNotificationBackend::ConfigWidget::widgetChanged() {
161   bool changed = enabled != ui.enabled->isChecked();
162
163   if(changed != hasChanged()) setChangedState(changed);
164 }
165
166 bool IndicatorNotificationBackend::ConfigWidget::hasDefaults() const {
167   return true;
168 }
169
170 void IndicatorNotificationBackend::ConfigWidget::defaults() {
171   ui.enabled->setChecked(false);
172   widgetChanged();
173 }
174
175 void IndicatorNotificationBackend::ConfigWidget::load() {
176   NotificationSettings s;
177   enabled = s.value("Indicator/Enabled", false).toBool();
178
179   ui.enabled->setChecked(enabled);
180   setChangedState(false);
181 }
182
183 void IndicatorNotificationBackend::ConfigWidget::save() {
184   NotificationSettings s;
185   s.setValue("Indicator/Enabled", ui.enabled->isChecked());
186   load();
187 }