X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreirclisthelper.h;h=e0a0c82b8492ed5070aafb91cd1174ce296d2dee;hp=8cb7c628e9a5e435993c38fe9a9a575ced044723;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=30b159cb876a9495de42e9a3e70ca050516f0805 diff --git a/src/core/coreirclisthelper.h b/src/core/coreirclisthelper.h index 8cb7c628..e0a0c82b 100644 --- a/src/core/coreirclisthelper.h +++ b/src/core/coreirclisthelper.h @@ -22,9 +22,8 @@ #include -#include "irclisthelper.h" - #include "coresession.h" +#include "irclisthelper.h" class QBasicTimer; class QTimerEvent; @@ -34,28 +33,30 @@ class CoreIrcListHelper : public IrcListHelper Q_OBJECT public: - inline CoreIrcListHelper(CoreSession *coreSession) : IrcListHelper(coreSession), _coreSession(coreSession) {}; + inline CoreIrcListHelper(CoreSession* coreSession) + : IrcListHelper(coreSession) + , _coreSession(coreSession){}; - inline CoreSession *coreSession() const { return _coreSession; } + inline CoreSession* coreSession() const { return _coreSession; } - inline bool requestInProgress(const NetworkId &netId) const { return _channelLists.contains(netId); } + inline bool requestInProgress(const NetworkId& netId) const { return _channelLists.contains(netId); } public slots: - QVariantList requestChannelList(const NetworkId &netId, const QStringList &channelFilters) override; - bool addChannel(const NetworkId &netId, const QString &channelName, quint32 userCount, const QString &topic); - bool endOfChannelList(const NetworkId &netId); + QVariantList requestChannelList(const NetworkId& netId, const QStringList& channelFilters) override; + bool addChannel(const NetworkId& netId, const QString& channelName, quint32 userCount, const QString& topic); + bool endOfChannelList(const NetworkId& netId); protected: - void timerEvent(QTimerEvent *event) override; + void timerEvent(QTimerEvent* event) override; private: - bool dispatchQuery(const NetworkId &netId, const QString &query); + bool dispatchQuery(const NetworkId& netId, const QString& query); private: - CoreSession *_coreSession; + CoreSession* _coreSession; QHash _queuedQuery; - QHash > _channelLists; + QHash> _channelLists; QHash _finishedChannelLists; QHash _queryTimeoutByTimerId; QHash> _queryTimeoutByNetId;