X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreignorelistmanager.h;h=d7d5c9cf043f1662b57223fb97c72903bd0c1fa5;hp=32e78b9f1fd523d42a2de4db7d5bf960c663dd0e;hb=36ea1791352d34e34b6c6cdef02455a4c43acc17;hpb=22d6ab71ce70b20f2d2657a27e968570b3dcb837 diff --git a/src/core/coreignorelistmanager.h b/src/core/coreignorelistmanager.h index 32e78b9f..d7d5c9cf 100644 --- a/src/core/coreignorelistmanager.h +++ b/src/core/coreignorelistmanager.h @@ -24,6 +24,7 @@ #include "ignorelistmanager.h" class CoreSession; +struct RawMessage; class CoreIgnoreListManager : public IgnoreListManager { SYNCABLE_OBJECT @@ -33,7 +34,8 @@ public: explicit CoreIgnoreListManager(CoreSession *parent); inline virtual const QMetaObject *syncMetaObject() const { return &IgnoreListManager::staticMetaObject; } - void save() const; + + StrictnessType match(const RawMessage &rawMsg, const QString &networkName); public slots: virtual inline void requestToggleIgnoreRule(const QString &ignoreRule) { toggleIgnoreRule(ignoreRule); } @@ -43,6 +45,9 @@ public slots: addIgnoreListItem(type, ignoreRule, isRegEx, strictness, scope, scopeRule, isActive); } +private slots: + void save() const; + //private: // void loadDefaults();