X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientbacklogmanager.h;h=aa58a4df43051abd291f8a45e1dae9078e9e2bd2;hp=f4a7b9054ca08f2903c370df9064337a6152fd4f;hb=158443f71d48215eea8b47b836b61afd77654b78;hpb=b83a4e42913fe10343be6e6c05a45916e6304ffc diff --git a/src/client/clientbacklogmanager.h b/src/client/clientbacklogmanager.h index f4a7b905..aa58a4df 100644 --- a/src/client/clientbacklogmanager.h +++ b/src/client/clientbacklogmanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,60 +15,61 @@ * 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. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef CLIENTBACKLOGMANAGER_H -#define CLIENTBACKLOGMANAGER_H +#pragma once + +#include "client-export.h" #include "backlogmanager.h" #include "message.h" class BacklogRequester; -class ClientBacklogManager : public BacklogManager { - SYNCABLE_OBJECT - Q_OBJECT +class CLIENT_EXPORT ClientBacklogManager : public BacklogManager +{ + Q_OBJECT public: - ClientBacklogManager(QObject *parent = 0); + ClientBacklogManager(QObject *parent = nullptr); - // helper for the backlogRequester, as it isn't a QObject and can't emit itself - inline void emitMessagesRequested(const QString &msg) const { emit messagesRequested(msg); } + // helper for the backlogRequester, as it isn't a QObject and can't emit itself + inline void emitMessagesRequested(const QString &msg) const { emit messagesRequested(msg); } - void reset(); + void reset(); public slots: - virtual QVariantList requestBacklog(BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); - virtual void receiveBacklog(BufferId bufferId, MsgId first, MsgId last, int limit, int additional, QVariantList msgs); - virtual void receiveBacklogAll(MsgId first, MsgId last, int limit, int additional, QVariantList msgs); + QVariantList requestBacklog(BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0) override; + void receiveBacklog(BufferId bufferId, MsgId first, MsgId last, int limit, int additional, QVariantList msgs) override; + void receiveBacklogAll(MsgId first, MsgId last, int limit, int additional, QVariantList msgs) override; - void requestInitialBacklog(); + void requestInitialBacklog(); - void checkForBacklog(BufferId bufferId); - void checkForBacklog(const BufferIdList &bufferIds); + void checkForBacklog(BufferId bufferId); + void checkForBacklog(const BufferIdList &bufferIds); signals: - void messagesReceived(BufferId bufferId, int count) const; - void messagesRequested(const QString &) const; - void messagesProcessed(const QString &) const; + void messagesReceived(BufferId bufferId, int count) const; + void messagesRequested(const QString &) const; + void messagesProcessed(const QString &) const; - void updateProgress(int, int); + void updateProgress(int, int); private: - bool isBuffering(); - BufferIdList filterNewBufferIds(const BufferIdList &bufferIds); + bool isBuffering(); + BufferIdList filterNewBufferIds(const BufferIdList &bufferIds); - void dispatchMessages(const MessageList &messages, bool sort = false); + void dispatchMessages(const MessageList &messages, bool sort = false); - BacklogRequester *_requester; - bool _initBacklogRequested; - QSet _buffersRequested; + BacklogRequester *_requester{nullptr}; + bool _initBacklogRequested{false}; + QSet _buffersRequested; }; + // inlines -inline void ClientBacklogManager::checkForBacklog(BufferId bufferId) { - checkForBacklog(BufferIdList() << bufferId); +inline void ClientBacklogManager::checkForBacklog(BufferId bufferId) +{ + checkForBacklog(BufferIdList() << bufferId); } - -#endif // CLIENTBACKLOGMANAGER_H