X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fknotificationbackend.h;h=394cdc9825eca7655bb5aea6b8cf8f5274c3db81;hp=98c42d98ff7470172ec8c10cffe3e0a22ea06f95;hb=f04db2cb802b1296ca739c823495930c71d3b4ab;hpb=b324a124e384bd8c9f54d97c5b5d6a5cc50fd91b diff --git a/src/qtui/knotificationbackend.h b/src/qtui/knotificationbackend.h index 98c42d98..394cdc98 100644 --- a/src/qtui/knotificationbackend.h +++ b/src/qtui/knotificationbackend.h @@ -1,63 +1,77 @@ /*************************************************************************** -* Copyright (C) 2005-08 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 + #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 > > _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