X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientuserinputhandler.h;h=0fa26ef4f52a2a437582eac1e68ce57f706433b7;hp=3b2749f393aae87b9697c6c687589b413fe14af2;hb=a95ad2de573027f9bee36db972bcae4195168d0c;hpb=62ff1c782104674e29df9e4744d9b41133b1eb7d diff --git a/src/client/clientuserinputhandler.h b/src/client/clientuserinputhandler.h index 3b2749f3..0fa26ef4 100644 --- a/src/client/clientuserinputhandler.h +++ b/src/client/clientuserinputhandler.h @@ -1,56 +1,62 @@ /*************************************************************************** -* Copyright (C) 2005-09 by the Quassel Project * -* devel@quassel-irc.org * -* * -* This program is free software; you can redistribute it and/or modify * -* it under the terms of the GNU General Public License as published by * -* the Free Software Foundation; either version 2 of the License, or * -* (at your option) version 3. * -* * -* This program is distributed in the hope that it will be useful, * -* but WITHOUT ANY WARRANTY; without even the implied warranty of * -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -* GNU General Public License for more details. * -* * -* You should have received a copy of the GNU General Public License * -* along with this program; if not, write to the * -* Free Software Foundation, Inc., * -* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * -***************************************************************************/ + * Copyright (C) 2005-2020 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ #ifndef CLIENTUSERINPUTHANDLER_H_ #define CLIENTUSERINPUTHANDLER_H_ -#include +#include "basichandler.h" -#include "aliasmanager.h" -#include "bufferinfo.h" +class BufferInfo; +struct NetworkId; -class ClientUserInputHandler : public QObject { - Q_OBJECT +class ClientUserInputHandler : public BasicHandler +{ + Q_OBJECT public: - ClientUserInputHandler(QObject *parent = 0); + ClientUserInputHandler(QObject* parent = nullptr); public slots: - void handleUserInput(const BufferInfo &bufferInfo, const QString &msg); + void handleUserInput(const BufferInfo& bufferInfo, const QString& msg); signals: - void sendInput(const BufferInfo &, const QString &); + void sendInput(const BufferInfo&, const QString&); private slots: - void clientConnected(); - void clientDisconnected(); - void initDone(); - void completionSuffixChanged(const QVariant &); + void completionSuffixChanged(const QVariant&); + + void handleExec(const BufferInfo& bufferInfo, const QString& execString); + void handleJoin(const BufferInfo& bufferInfo, const QString& text); + void handleQuery(const BufferInfo& bufferInfo, const QString& text); + void handleIgnore(const BufferInfo& bufferInfo, const QString& text); + void handleList(const BufferInfo& bufferInfo, const QString& text); + void defaultHandler(const QString& cmd, const BufferInfo& bufferInfo, const QString& text); private: - void expand(const QString &alias, const BufferInfo &bufferInfo, const QString &msg); + QRegExp _nickRx; - bool _initialized; - QRegExp _nickRx; - AliasManager _aliasManager; - QList > _inputBuffer; + //! Helper method for switching to new/existing buffers + /** Immediately switches to the given buffer or schedules a switch for whenever + * the buffer is created + */ + void switchBuffer(const NetworkId& networkId, const QString& bufferName); }; #endif