X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreignorelistmanager.h;h=af0a0817bd9745d6ac211f040dba17d05119eaf3;hb=6b523158496a0fb79482a7451d0afb6bae482e4e;hp=d455d2c3e71927008fe0dc62a96945818c9b10b3;hpb=12feae2e4609b90c87d3c1857031909248143fd7;p=quassel.git diff --git a/src/core/coreignorelistmanager.h b/src/core/coreignorelistmanager.h index d455d2c3..af0a0817 100644 --- a/src/core/coreignorelistmanager.h +++ b/src/core/coreignorelistmanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,29 +15,37 @@ * 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. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef COREIGNORELISTMANAGER_H -#define COREIGNORELISTMANAGER_H +#pragma once #include "ignorelistmanager.h" class CoreSession; +struct RawMessage; -class CoreIgnoreListManager : public IgnoreListManager { - SYNCABLE_OBJECT - Q_OBJECT +class CoreIgnoreListManager : public IgnoreListManager +{ + Q_OBJECT public: - explicit CoreIgnoreListManager(CoreSession *parent); - ~CoreIgnoreListManager(); + explicit CoreIgnoreListManager(CoreSession* parent); - inline virtual const QMetaObject *syncMetaObject() const { return &IgnoreListManager::staticMetaObject; } + StrictnessType match(const RawMessage& rawMsg, const QString& networkName); -//private: -// void loadDefaults(); +public slots: + inline void requestToggleIgnoreRule(const QString& ignoreRule) override { toggleIgnoreRule(ignoreRule); } + inline void requestRemoveIgnoreListItem(const QString& ignoreRule) override { removeIgnoreListItem(ignoreRule); } + inline void requestAddIgnoreListItem( + int type, const QString& ignoreRule, bool isRegEx, int strictness, int scope, const QString& scopeRule, bool isActive) override + { + addIgnoreListItem(type, ignoreRule, isRegEx, strictness, scope, scopeRule, isActive); + } -}; +private slots: + void save() const; -#endif //COREIGNORELISTMANAGER_H + // private: + // void loadDefaults(); +};