X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreignorelistmanager.cpp;h=36c703607664030eff7ceb01be0e81dca2fbd567;hb=694f9bfbf7f1af19108461c7e00d133e55082bce;hp=0d9901ff77c4d1757227c2dc2ef8d4303a8fdacc;hpb=22d6ab71ce70b20f2d2657a27e968570b3dcb837;p=quassel.git diff --git a/src/core/coreignorelistmanager.cpp b/src/core/coreignorelistmanager.cpp index 0d9901ff..36c70360 100644 --- a/src/core/coreignorelistmanager.cpp +++ b/src/core/coreignorelistmanager.cpp @@ -24,32 +24,45 @@ #include "coresession.h" INIT_SYNCABLE_OBJECT(CoreIgnoreListManager) - CoreIgnoreListManager::CoreIgnoreListManager(CoreSession *parent) - : IgnoreListManager(parent) + : IgnoreListManager(parent) { - CoreSession *session = qobject_cast(parent); - if(!session) { - qWarning() << "CoreIgnoreListManager: unable to load IgnoreList. Parent is not a Coresession!"; - //loadDefaults(); - return; - } + CoreSession *session = qobject_cast(parent); + if (!session) { + qWarning() << "CoreIgnoreListManager: unable to load IgnoreList. Parent is not a Coresession!"; + //loadDefaults(); + return; + } + + initSetIgnoreList(Core::getUserSetting(session->user(), "IgnoreList").toMap()); - initSetIgnoreList(Core::getUserSetting(session->user(), "IgnoreList").toMap()); - //if(isEmpty()) + // we store our settings whenever they change + connect(this, SIGNAL(updatedRemotely()), SLOT(save())); + + //if(isEmpty()) //loadDefaults(); } -void CoreIgnoreListManager::save() const { - CoreSession *session = qobject_cast(parent()); - if(!session) { - qWarning() << "CoreIgnoreListManager: unable to save IgnoreList. Parent is not a Coresession!"; - return; - } - Core::setUserSetting(session->user(), "IgnoreList", initIgnoreList()); +IgnoreListManager::StrictnessType CoreIgnoreListManager::match(const RawMessage &rawMsg, const QString &networkName) +{ + //StrictnessType _match(const QString &msgContents, const QString &msgSender, Message::Type msgType, const QString &network, const QString &bufferName); + return _match(rawMsg.text, rawMsg.sender, rawMsg.type, networkName, rawMsg.target); } + +void CoreIgnoreListManager::save() const +{ + CoreSession *session = qobject_cast(parent()); + if (!session) { + qWarning() << "CoreIgnoreListManager: unable to save IgnoreList. Parent is not a Coresession!"; + return; + } + + Core::setUserSetting(session->user(), "IgnoreList", initIgnoreList()); +} + + //void CoreIgnoreListManager::loadDefaults() { // foreach(IgnoreListItem item, IgnoreListManager::defaults()) { // addIgnoreListItem(item.ignoreRule, item.isRegEx, item.strictness, item.scope, item.scopeRule);