Sanitize topic message
[quassel.git] / src / qtui / knotificationbackend.h
index ca0585c..394cdc9 100644 (file)
@@ -1,63 +1,77 @@
 /***************************************************************************
-*   Copyright (C) 2005-09 by the Quassel Project                          *
-*   devel@quassel-irc.org                                                 *
-*                                                                         *
-*   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 2 of the License, or     *
-*   (at your option) version 3.                                           *
-*                                                                         *
-*   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, write to the                         *
-*   Free Software Foundation, Inc.,                                       *
-*   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
-***************************************************************************/
+ *   Copyright (C) 2005-2013 by the Quassel Project                        *
+ *   devel@quassel-irc.org                                                 *
+ *                                                                         *
+ *   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 2 of the License, or     *
+ *   (at your option) version 3.                                           *
+ *                                                                         *
+ *   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, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
+ ***************************************************************************/
 
 #ifndef KNOTIFICATIONBACKEND_H_
 #define KNOTIFICATIONBACKEND_H_
 
+#include <QPointer>
+
 #include "abstractnotificationbackend.h"
 #include "settingspage.h"
+#include "systemtray.h"
 
 class KNotification;
 class KNotifyConfigWidget;
 
-class KNotificationBackend : public AbstractNotificationBackend {
-  Q_OBJECT
+class KNotificationBackend : public AbstractNotificationBackend
+{
+    Q_OBJECT
 
 public:
-  KNotificationBackend(QObject *parent = 0);
+    KNotificationBackend(QObject *parent = 0);
 
-  void notify(const Notification &);
-  void close(uint notificationId);
-  virtual SettingsPage *createConfigWidget() const;
+    void notify(const Notification &);
+    void close(uint notificationId);
+    virtual SettingsPage *createConfigWidget() const;
 
 private slots:
-  void notificationActivated();
+    void notificationActivated();
+    void notificationActivated(SystemTray::ActivationReason);
+    void notificationActivated(uint notificationId);
 
 private:
-  class ConfigWidget;
+    class ConfigWidget;
+
+    void removeNotificationById(uint id);
+    void updateToolTip();
+
+    QList<QPair<uint, QPointer<KNotification> > > _notifications;
 };
 
-class KNotificationBackend::ConfigWidget : public SettingsPage {
-  Q_OBJECT
+
+class KNotificationBackend::ConfigWidget : public SettingsPage
+{
+    Q_OBJECT
 
 public:
-  ConfigWidget(QWidget *parent = 0);
+    ConfigWidget(QWidget *parent = 0);
 
-  void save();
-  void load();
+    void save();
+    void load();
 
 private slots:
-  void widgetChanged(bool);
+    void widgetChanged(bool);
 
 private:
-  KNotifyConfigWidget *_widget;
+    KNotifyConfigWidget *_widget;
 };
 
+
 #endif