X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=562c422d1a4aa8e5665a0912743bc74c96a5eddb;hp=c8894de3073af4600c76fe8f5f9155c82f472b27;hb=b5385b3ddf6f0e8df8f0af7275b59dcc1fcd0ed1;hpb=aff2b3fc3eb85e246add6ac0612f52912c78d0cf diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index c8894de3..562c422d 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -32,40 +32,47 @@ public: void handleServerMsg(QByteArray rawMsg); - QString serverDecode(const QByteArray &string); - QStringList serverDecode(const QList &stringlist); - QString bufferDecode(const QString &bufferName, const QByteArray &string); - QStringList bufferDecode(const QString &bufferName, const QList &stringlist); - QString userDecode(const QString &userNick, const QByteArray &string); - QStringList userDecode(const QString &userNick, const QList &stringlist); - - public slots: - void handleJoin(QString, QList); - void handleKick(QString, QList); - void handleMode(QString, QList); - void handleNick(QString, QList); - void handleNotice(QString, QList); - void handlePart(QString, QList); - void handlePing(QString, QList); - void handlePrivmsg(QString, QList); - void handleQuit(QString, QList); - void handleTopic(QString, QList); + void handleJoin(const QString &prefix, const QList ¶ms); + void handleKick(const QString &prefix, const QList ¶ms); + void handleMode(const QString &prefix, const QList ¶ms); + void handleNick(const QString &prefix, const QList ¶ms); + void handleNotice(const QString &prefix, const QList ¶ms); + void handlePart(const QString &prefix, const QList ¶ms); + void handlePing(const QString &prefix, const QList ¶ms); + void handlePrivmsg(const QString &prefix, const QList ¶ms); + void handleQuit(const QString &prefix, const QList ¶ms); + void handleTopic(const QString &prefix, const QList ¶ms); - void handle001(QString, QList); // RPL_WELCOME - void handle005(QString, QList); // RPL_ISUPPORT - void handle331(QString, QList); // RPL_NOTOPIC - void handle332(QString, QList); // RPL_TOPIC - void handle333(QString, QList); // Topic set by... - void handle353(QString, QList); // RPL_NAMREPLY - void handle432(QString, QList); // ERR_ERRONEUSNICKNAME - void handle433(QString, QList); // ERR_NICKNAMEINUSE + void handle001(const QString &prefix, const QList ¶ms); // RPL_WELCOME + void handle005(const QString &prefix, const QList ¶ms); // RPL_ISUPPORT + void handle301(const QString &prefix, const QList ¶ms); // RPL_AWAY + void handle311(const QString &prefix, const QList ¶ms); // RPL_WHOISUSER + void handle312(const QString &prefix, const QList ¶ms); // RPL_WHOISSERVER + void handle313(const QString &prefix, const QList ¶ms); // RPL_WHOISOPERATOR + void handle314(const QString &prefix, const QList ¶ms); // RPL_WHOWASUSER + void handle315(const QString &prefix, const QList ¶ms); // RPL_ENDOFWHO + void handle317(const QString &prefix, const QList ¶ms); // RPL_WHOISIDLE + void handle318(const QString &prefix, const QList ¶ms); // RPL_ENDOFWHOIS + void handle319(const QString &prefix, const QList ¶ms); // RPL_WHOISCHANNELS + void handle320(const QString &prefix, const QList ¶ms); // RPL_WHOISVIRT (is identified to services) + void handle331(const QString &prefix, const QList ¶ms); // RPL_NOTOPIC + void handle332(const QString &prefix, const QList ¶ms); // RPL_TOPIC + void handle333(const QString &prefix, const QList ¶ms); // Topic set by... + void handle352(const QString &prefix, const QList ¶ms); // RPL_WHOREPLY + void handle353(const QString &prefix, const QList ¶ms); // RPL_NAMREPLY + void handle369(const QString &prefix, const QList ¶ms); // RPL_ENDOFWHOWAS + void handle432(const QString &prefix, const QList ¶ms); // ERR_ERRONEUSNICKNAME + void handle433(const QString &prefix, const QList ¶ms); // ERR_NICKNAMEINUSE - void defaultHandler(QString cmd, QString prefix, QList params); + void defaultHandler(QString cmd, const QString &prefix, const QList ¶ms); +signals: + void nickChanged(const QString &newNick, const QString &oldNick); // this signal is inteded to rename query buffers in the storage backend + private: void tryNextNick(const QString &errnick); - NetworkConnection *networkConnection; + bool _whois; };