X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreignorelistmanager.h;fp=src%2Fcore%2Fcoreignorelistmanager.h;h=051b44cad516fd05ae0eff1741ac1241277a0965;hp=d7d5c9cf043f1662b57223fb97c72903bd0c1fa5;hb=694f9bfbf7f1af19108461c7e00d133e55082bce;hpb=61c8d84d1c849373e0f115dc748ed45cff95287d diff --git a/src/core/coreignorelistmanager.h b/src/core/coreignorelistmanager.h index d7d5c9cf..051b44ca 100644 --- a/src/core/coreignorelistmanager.h +++ b/src/core/coreignorelistmanager.h @@ -26,31 +26,34 @@ class CoreSession; struct RawMessage; -class CoreIgnoreListManager : public IgnoreListManager { - SYNCABLE_OBJECT - Q_OBJECT +class CoreIgnoreListManager : public IgnoreListManager +{ + SYNCABLE_OBJECT + Q_OBJECT public: - explicit CoreIgnoreListManager(CoreSession *parent); + explicit CoreIgnoreListManager(CoreSession *parent); - inline virtual const QMetaObject *syncMetaObject() const { return &IgnoreListManager::staticMetaObject; } + inline virtual const QMetaObject *syncMetaObject() const { return &IgnoreListManager::staticMetaObject; } - StrictnessType match(const RawMessage &rawMsg, const QString &networkName); + StrictnessType match(const RawMessage &rawMsg, const QString &networkName); public slots: - virtual inline void requestToggleIgnoreRule(const QString &ignoreRule) { toggleIgnoreRule(ignoreRule); } - virtual inline void requestRemoveIgnoreListItem(const QString &ignoreRule) { removeIgnoreListItem(ignoreRule); } - virtual inline void requestAddIgnoreListItem(int type, const QString &ignoreRule, bool isRegEx, int strictness, - int scope, const QString &scopeRule, bool isActive) { - addIgnoreListItem(type, ignoreRule, isRegEx, strictness, scope, scopeRule, isActive); - } + virtual inline void requestToggleIgnoreRule(const QString &ignoreRule) { toggleIgnoreRule(ignoreRule); } + virtual inline void requestRemoveIgnoreListItem(const QString &ignoreRule) { removeIgnoreListItem(ignoreRule); } + virtual inline void requestAddIgnoreListItem(int type, const QString &ignoreRule, bool isRegEx, int strictness, + int scope, const QString &scopeRule, bool isActive) + { + addIgnoreListItem(type, ignoreRule, isRegEx, strictness, scope, scopeRule, isActive); + } + private slots: - void save() const; + void save() const; //private: // void loadDefaults(); - }; + #endif //COREIGNORELISTMANAGER_H