removed debug output
[quassel.git] / src / qtui / snorenotificationbackend.cpp
1 /***************************************************************************
2 *   Copyright (C) 2011-2013 by Patrick von Reth                           *
3 *   vonreth@kde.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 "snorenotificationbackend.h"
22
23 #include <QtGui>
24 #include <QtGlobal>
25
26 #include "client.h"
27 #include "iconloader.h"
28 #include "networkmodel.h"
29 #include "systraynotificationbackend.h"
30 #include "qtui.h"
31
32 #include <iostream>
33
34
35 #include <snore/core/snore.h>
36 #include <snore/core/notification/notification.h>
37
38
39 SnoreNotificationBackend::SnoreNotificationBackend (QObject *parent)
40     :AbstractNotificationBackend(parent),
41       m_systrayBackend(NULL)
42 {
43     NotificationSettings notificationSettings;
44     QString backend = notificationSettings.value("Snore/Backend", "Default").toString();
45     m_timeout = notificationSettings.value("Snore/Timeout",10).toInt();
46
47     notificationSettings.notify("Snore/Backend", this, SLOT(backendChanged(const QVariant &)));
48     notificationSettings.notify("Snore/Backend", this, SLOT(timeoutChanged(const QVariant &)));
49
50     //TODO: try to get an instance of the tray icon to be able to show popups
51     m_snore = new Snore::SnoreCore();
52     m_snore->hints().setValue("WINDOWS_APP_ID","QuasselProject.QuasselIRC");
53     m_snore->loadPlugins(Snore::PluginContainer::BACKEND);
54     Snore::Application *a = new Snore::Application("Quassel",Snore::Icon(DesktopIcon("quassel").toImage()));
55
56     connect(m_snore,SIGNAL(actionInvoked(Snore::Notification)),this,SLOT(actionInvoked(Snore::Notification)));
57
58     m_icon = Snore::Icon(DesktopIcon("dialog-information").toImage());
59
60     a->addAlert(new Snore::Alert(tr("Private Message"),tr("Private Message")));
61
62     m_snore->addApplication(a);
63     m_snore->applicationIsInitialized (a);
64
65     backendChanged(QVariant::fromValue(backend));
66
67
68 }
69
70 SnoreNotificationBackend::~SnoreNotificationBackend()
71 {
72     m_snore->removeApplication("Quassel");
73     m_snore->deleteLater();
74 }
75
76 void SnoreNotificationBackend::backendChanged(const QVariant &v)
77 {
78     QString backend = v.toString();
79     if(backend == "Default")
80     {
81         if(m_snore->setPrimaryNotificationBackend())//try to find the default backend for the platform
82         {
83             return;
84         }
85     }
86     else if(backend != "SystemTray")
87     {
88         if(setSnoreBackend(backend))
89         {
90             return;
91         }
92     }
93     setTraybackend();
94 }
95
96 void SnoreNotificationBackend::timeoutChanged(const QVariant &v)
97 {
98     m_timeout = v.toInt();
99 }
100
101 void SnoreNotificationBackend::notify(const Notification &n)
102 {
103     if(m_systrayBackend != NULL)
104         return;
105     QString title = Client::networkModel()->networkName(n.bufferId) + " - " + Client::networkModel()->bufferName(n.bufferId);
106     QString message = QString("<%1> %2").arg(n.sender, n.message);
107     Snore::Notification noti("Quassel",tr("Private Message"),title,message,m_icon,m_timeout);
108     noti.hints().setValue("QUASSEL_ID",n.notificationId);
109     m_notificationIds.insert(n.notificationId,noti.id());
110     m_snore->broadcastNotification(noti);
111 }
112
113 void SnoreNotificationBackend::close(uint notificationId)
114 {
115     if(m_systrayBackend != NULL)
116         return;
117     Snore::Notification n = m_snore->getActiveNotificationByID(m_notificationIds.take(notificationId));
118     m_snore->requestCloseNotification(n,Snore::NotificationEnums::CloseReasons::CLOSED);
119 }
120
121 void SnoreNotificationBackend::actionInvoked(Snore::Notification n)
122 {
123     emit activated(n.hints().value("QUASSEL_ID").toUInt());
124 }
125
126 SettingsPage *SnoreNotificationBackend::createConfigWidget()const
127 {
128     return new ConfigWidget(m_snore);
129 }
130
131 void SnoreNotificationBackend::setTraybackend()
132 {
133     if(m_systrayBackend == NULL){
134         m_systrayBackend = new SystrayNotificationBackend(this);
135         QtUi::registerNotificationBackend(m_systrayBackend);
136     }
137 }
138
139 bool SnoreNotificationBackend::setSnoreBackend(const QString &backend)
140 {
141     if(m_systrayBackend != NULL){
142         QtUi::unregisterNotificationBackend(m_systrayBackend);
143         delete m_systrayBackend;
144         m_systrayBackend = NULL;
145     }
146     return m_snore->setPrimaryNotificationBackend(backend);
147 }
148
149
150
151
152 /***************************************************************************/
153
154 SnoreNotificationBackend::ConfigWidget::ConfigWidget(Snore::SnoreCore *snore,QWidget *parent)
155     :SettingsPage("Internal", "SnoreNotification", parent),
156       m_snore(snore)
157 {
158     ui.setupUi(this);
159     ui.backends->insertItem(0,"Default");
160     ui.backends->insertItems(1,m_snore->notificationBackends());
161
162     connect(ui.backends, SIGNAL(currentIndexChanged(QString)), SLOT(backendChanged(QString)));
163     connect(ui.timeout,SIGNAL(valueChanged(int)),this,SLOT(timeoutChanged(int)));
164 }
165
166 void SnoreNotificationBackend::ConfigWidget::backendChanged(const QString &b)
167 {
168     ui.backends->setCurrentIndex(ui.backends->findText(b));
169     setChangedState(true);
170 }
171
172 void SnoreNotificationBackend::ConfigWidget::timeoutChanged(int i)
173 {
174     ui.timeout->setValue(i);
175     setChangedState(true);
176
177 }
178
179 bool SnoreNotificationBackend::ConfigWidget::hasDefaults() const
180 {
181     return true;
182 }
183
184 void SnoreNotificationBackend::ConfigWidget::defaults()
185 {
186     backendChanged("Default");
187     timeoutChanged(10);
188 }
189
190 void SnoreNotificationBackend::ConfigWidget::load()
191 {
192     NotificationSettings s;
193     QString backend = m_snore->primaryNotificationBackend();
194     if(backend.isEmpty()){
195         backend = "SystemTray";
196     }
197     int timeout = s.value("Snore/Timeout",10).toInt();
198     ui.backends->setCurrentIndex(ui.backends->findText(backend));
199     ui.timeout->setValue(timeout);
200     setChangedState(false);
201 }
202
203 void SnoreNotificationBackend::ConfigWidget::save()
204 {
205     NotificationSettings s;
206     s.setValue("Snore/Backend", ui.backends->currentText());
207     s.setValue("Snore/Timeout",ui.timeout->value());
208     load();
209 }