X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fabstractnotificationbackend.h;h=2d8ea221f284171495e1a258e524234df8394d19;hp=c7112afa7fba5019eb6df567ef86f1ba6e20b8d3;hb=52209badc8e769e50aa3019b63689dda0e79e9d0;hpb=5c78a50fa720e5f82fcaa03c0176feab71d74c8e diff --git a/src/uisupport/abstractnotificationbackend.h b/src/uisupport/abstractnotificationbackend.h index c7112afa..2d8ea221 100644 --- a/src/uisupport/abstractnotificationbackend.h +++ b/src/uisupport/abstractnotificationbackend.h @@ -1,25 +1,28 @@ /*************************************************************************** -* 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. * -***************************************************************************/ - -#ifndef ABSTRACTNOTIFICATIONBACKEND_H_ -#define ABSTRACTNOTIFICATIONBACKEND_H_ + * Copyright (C) 2005-2019 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 "uisupport-export.h" + +#include #include #include @@ -28,27 +31,49 @@ class SettingsPage; -class AbstractNotificationBackend : public QObject { - Q_OBJECT +class UISUPPORT_EXPORT AbstractNotificationBackend : public QObject +{ + Q_OBJECT - public: - struct Notification { - uint notificationId; - BufferId bufferId; - QString sender; - QString message; +public: + enum NotificationType + { + Highlight = 0x01, + PrivMsg = 0x02, + HighlightFocused = 0x11, + PrivMsgFocused = 0x12 + }; - Notification(uint id_, BufferId buf_, const QString &sender_, const QString &msg_) - : notificationId(id_), bufferId(buf_), sender(sender_), message(msg_) {}; + struct Notification + { + uint notificationId; + BufferId bufferId; + NotificationType type; + QString sender; + QString message; + + Notification(uint id_, BufferId buf_, NotificationType type_, QString sender_, QString msg_) + : notificationId(id_) + , bufferId(buf_) + , type(type_) + , sender(std::move(sender_)) + , message(std::move(msg_)) + {} }; - inline AbstractNotificationBackend(QObject *parent) : QObject(parent) {}; - virtual ~AbstractNotificationBackend() {}; + using QObject::QObject; - virtual void notify(const Notification &) = 0; + virtual void notify(const Notification&) = 0; virtual void close(uint notificationId) { Q_UNUSED(notificationId); } - virtual SettingsPage *configWidget() const = 0; -}; + //! Factory to create a configuration widget suitable for a specific notification backend + /** + * AbstractNotification will not take ownership of that configWidget! + * In case you need to communicate with the configWidget directly, make your connections here + */ + virtual SettingsPage* createConfigWidget() const = 0; -#endif +signals: + //! May be emitted by the notification to tell the MainWin to raise itself + void activated(uint notificationId = 0); +};