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