X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientuserinputhandler.cpp;h=0ac69be0357afbf81d11a1f3e43baaa3d437597f;hp=793f75699bc41e3d913ce1ab7d2df2f7e0722b86;hb=fbadddc3ed0686d48dbe7d1688e73642bf294d99;hpb=921e54680da16fcf2adb7a90506875aceb6633a4 diff --git a/src/client/clientuserinputhandler.cpp b/src/client/clientuserinputhandler.cpp index 793f7569..0ac69be0 100644 --- a/src/client/clientuserinputhandler.cpp +++ b/src/client/clientuserinputhandler.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2016 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -20,18 +20,20 @@ #include "clientuserinputhandler.h" +#include "bufferinfo.h" #include "buffermodel.h" #include "client.h" #include "clientaliasmanager.h" +#include "clientbufferviewconfig.h" +#include "clientbufferviewmanager.h" +#include "clientignorelistmanager.h" #include "clientsettings.h" #include "execwrapper.h" +#include "ignorelistmanager.h" #include "ircuser.h" +#include "messagemodel.h" #include "network.h" #include "types.h" -#include "bufferinfo.h" -#include "clientbufferviewconfig.h" -#include "clientbufferviewmanager.h" -#include "messagemodel.h" #include @@ -116,6 +118,35 @@ void ClientUserInputHandler::handleQuery(const BufferInfo &bufferInfo, const QSt } +void ClientUserInputHandler::handleIgnore(const BufferInfo &bufferInfo, const QString &text) +{ + if (text.isEmpty()) { + emit Client::instance()->displayIgnoreList(""); + return; + } + // If rule contains no ! or @, we assume it is just a nickname, and turn it into an ignore rule for that nick + QString rule = (text.contains('!') || text.contains('@')) ? text : text + "!*@*"; + + Client::ignoreListManager()->requestAddIgnoreListItem( + IgnoreListManager::IgnoreType::SenderIgnore, + rule, + false, + // Use a dynamic ignore rule, for reversibility + IgnoreListManager::StrictnessType::SoftStrictness, + // Use current network as scope + IgnoreListManager::ScopeType::NetworkScope, + Client::network(bufferInfo.networkId())->networkName(), + true + ); +} + +void ClientUserInputHandler::handleList(const BufferInfo &bufferInfo, const QString &text) +{ + Q_UNUSED(text) + Client::instance()->displayChannelList(bufferInfo.networkId()); +} + + void ClientUserInputHandler::switchBuffer(const NetworkId &networkId, const QString &bufferName) { BufferId newBufId = Client::networkModel()->bufferId(networkId, bufferName);