X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fuserinputhandler.cpp;h=4b4c079659112e4cfd33719181e4399084f147af;hp=70db4342820fd28eb51e355dabd6a799b6968661;hb=0d2e5ff7439fe7bf9f24f1f55763881382ecb12a;hpb=0a4d79a4341eef3032337f64e9ef0d35db521664 diff --git a/src/core/userinputhandler.cpp b/src/core/userinputhandler.cpp index 70db4342..4b4c0796 100644 --- a/src/core/userinputhandler.cpp +++ b/src/core/userinputhandler.cpp @@ -354,6 +354,25 @@ void UserInputHandler::handleVoice(const BufferInfo &bufferInfo, const QString & emit putCmd("MODE", serverEncode(params)); } +void UserInputHandler::handleWait(const BufferInfo &bufferInfo, const QString &msg) { + int splitPos = msg.indexOf(';'); + if(splitPos <= 0) + return; + + bool ok; + int delay = msg.left(splitPos).trimmed().toInt(&ok); + if(!ok) + return; + + delay *= 1000; + + QString command = msg.mid(splitPos + 1).trimmed(); + if(command.isEmpty()) + return; + + _delayedCommands[startTimer(delay)] = Command(bufferInfo, command); +} + void UserInputHandler::handleWho(const BufferInfo &bufferInfo, const QString &msg) { Q_UNUSED(bufferInfo) emit putCmd("WHO", serverEncode(msg.split(' '))); @@ -383,6 +402,7 @@ void UserInputHandler::expand(const QString &alias, const BufferInfo &bufferInfo QRegExp paramRangeR("\\$(\\d+)\\.\\.(\\d*)"); QStringList commands = alias.split(QRegExp("; ?")); QStringList params = msg.split(' '); + QStringList expandedCommands; for(int i = 0; i < commands.count(); i++) { QString command = commands[i]; @@ -412,6 +432,17 @@ void UserInputHandler::expand(const QString &alias, const BufferInfo &bufferInfo command = command.replace("$0", msg); command = command.replace("$channelname", bufferInfo.bufferName()); command = command.replace("$currentnick", network()->myNick()); + expandedCommands << command; + } + + while(!expandedCommands.isEmpty()) { + QString command; + if(expandedCommands[0].trimmed().toLower().startsWith("/wait")) { + command = expandedCommands.join("; "); + expandedCommands.clear(); + } else { + command = expandedCommands.takeFirst(); + } handleUserInput(bufferInfo, command); } } @@ -467,3 +498,13 @@ int UserInputHandler::lastParamOverrun(const QString &cmd, const QListtimerId())) { + QObject::timerEvent(event); + return; + } + Command command = _delayedCommands.take(event->timerId()); + event->accept(); + handleUserInput(command.bufferInfo, command.command); +}