X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fknotificationbackend.h;h=93e15067202daa919828c3ec357bd27ef0ec3b63;hp=d846417c9e52e6482d0be3073daca74ce38fc72f;hb=c013d415d0e6e85cbb8c0adba9ded53bbcf4f36c;hpb=fcf721c85ec4f804d11ac1553592de860f5a3f1d diff --git a/src/qtui/knotificationbackend.h b/src/qtui/knotificationbackend.h index d846417c..93e15067 100644 --- a/src/qtui/knotificationbackend.h +++ b/src/qtui/knotificationbackend.h @@ -1,73 +1,73 @@ /*************************************************************************** -* 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. * -***************************************************************************/ - -#ifndef KNOTIFICATIONBACKEND_H_ -#define KNOTIFICATIONBACKEND_H_ - -#include + * Copyright (C) 2005-2018 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. * + ***************************************************************************/ + +#pragma once + +#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(QSystemTrayIcon::ActivationReason); - void notificationActivated(uint notificationId); - void notificationClosed(); + void notificationActivated(); + void notificationActivated(SystemTray::ActivationReason); + void notificationActivated(uint notificationId); private: - class ConfigWidget; + class ConfigWidget; - void removeNotificationById(uint id); + void removeNotificationById(uint id); + void updateToolTip(); - QHash _notificationIds; - uint _lastNotificationId; + 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