X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorehighlightrulemanager.h;h=828c6f0f198f775cf7ce85ab5611da7aee0557d2;hp=85a26ff53d785e6b485169ea15d893e44b62b6d1;hb=edc55b1f86cf613a332eeeb5d85537a54120dfa5;hpb=a68417655dbb2982567642e75e95292fd57e6aec diff --git a/src/core/corehighlightrulemanager.h b/src/core/corehighlightrulemanager.h index 85a26ff5..828c6f0f 100644 --- a/src/core/corehighlightrulemanager.h +++ b/src/core/corehighlightrulemanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 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 * @@ -25,30 +25,48 @@ class CoreSession; struct RawMessage; +/** + * Core-side specialization for HighlightRuleManager. + * + * Adds the ability to load/save the settings from/to the database. + */ class CoreHighlightRuleManager : public HighlightRuleManager { Q_OBJECT - SYNCABLE_OBJECT using HighlightRuleManager::match; public: - explicit CoreHighlightRuleManager(CoreSession *parent); + /** + * Constructor. + * + * @param[in] session Pointer to the parent CoreSession (takes ownership) + */ + explicit CoreHighlightRuleManager(CoreSession* session); - virtual const QMetaObject *syncMetaObject() const override { return &HighlightRuleManager::staticMetaObject; } - - bool match(const RawMessage &msg, const QString ¤tNick, const QStringList &identityNicks); + bool match(const RawMessage& msg, const QString& currentNick, const QStringList& identityNicks); public slots: inline void requestToggleHighlightRule(int highlightRule) override { toggleHighlightRule(highlightRule); } inline void requestRemoveHighlightRule(int highlightRule) override { removeHighlightRule(highlightRule); } - inline void requestAddHighlightRule(int id, const QString &name, bool isRegEx, bool isCaseSensitive, - bool isEnabled, bool isInverse, const QString &sender, - const QString &chanName) override + inline void requestAddHighlightRule(int id, + const QString& name, + bool isRegEx, + bool isCaseSensitive, + bool isEnabled, + bool isInverse, + const QString& sender, + const QString& chanName) override { addHighlightRule(id, name, isRegEx, isCaseSensitive, isEnabled, isInverse, sender, chanName); } private slots: - void save() const; + /** + * Saves the config to the database. + */ + void save(); + +private: + CoreSession* _coreSession{nullptr}; ///< Pointer to the parent CoreSession };