X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fbacklogmanager.h;h=77ad6908851de56c28c9a918ff4bbd3c83667abf;hp=6ff6b9cc397c017c7f934e7195e7f555db8a4372;hb=HEAD;hpb=8ec76e512d20ce5d1dc76de556bb98a06b75d695 diff --git a/src/common/backlogmanager.h b/src/common/backlogmanager.h index 6ff6b9cc..77ad6908 100644 --- a/src/common/backlogmanager.h +++ b/src/common/backlogmanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,28 +15,43 @@ * 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 BACKLOGMANAGER_H -#define BACKLOGMANAGER_H +#pragma once + +#include "common-export.h" #include "syncableobject.h" #include "types.h" -class BacklogManager : public SyncableObject { - Q_OBJECT +class COMMON_EXPORT BacklogManager : public SyncableObject +{ + Q_OBJECT + SYNCABLE_OBJECT public: - BacklogManager(QObject *parent = 0); + BacklogManager(QObject* parent = nullptr) + : SyncableObject(parent) + {} public slots: - virtual QVariantList requestBacklog(BufferId bufferId, int lastMsgs = -1, int offset = -1); - virtual void receiveBacklog(BufferId, int, int, QVariantList) {}; + virtual QVariantList requestBacklog(BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); + virtual QVariantList requestBacklogFiltered( + BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0, int type = -1, int flags = -1); + virtual QVariantList requestBacklogForward( + BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1, int type = -1, int flags = -1); + inline virtual void receiveBacklog(BufferId, MsgId, MsgId, int, int, QVariantList){}; + inline virtual void receiveBacklogFiltered(BufferId, MsgId, MsgId, int, int, int, int, QVariantList){}; + inline virtual void receiveBacklogForward(BufferId, MsgId, MsgId, int, int, int, QVariantList){}; + + virtual QVariantList requestBacklogAll(MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); + virtual QVariantList requestBacklogAllFiltered( + MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0, int type = -1, int flags = -1); + inline virtual void receiveBacklogAll(MsgId, MsgId, int, int, QVariantList){}; + inline virtual void receiveBacklogAllFiltered(MsgId, MsgId, int, int, int, int, QVariantList){}; signals: - void backlogRequested(BufferId, int, int); - + void backlogRequested(BufferId, MsgId, MsgId, int, int); + void backlogAllRequested(MsgId, MsgId, int, int); }; - -#endif // BACKLOGMANAGER_H