X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fbacklogmanager.h;h=6318a97ba9e75d1400bf9b2544b3c6467c2e4297;hb=b8db3c55a7f66a8d6ecabf9039aabceff9ae4837;hp=91d1c5c5c06c078bdce246f1118c6eb4a84db0f0;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce;p=quassel.git diff --git a/src/common/backlogmanager.h b/src/common/backlogmanager.h index 91d1c5c5..6318a97b 100644 --- a/src/common/backlogmanager.h +++ b/src/common/backlogmanager.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,35 +15,40 @@ * 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 +class COMMON_EXPORT BacklogManager : public SyncableObject { + Q_OBJECT SYNCABLE_OBJECT - Q_OBJECT public: - BacklogManager(QObject *parent = 0) : SyncableObject(parent) {} - inline virtual const QMetaObject *syncMetaObject() const { return &staticMetaObject; } + BacklogManager(QObject* parent = nullptr) + : SyncableObject(parent) + {} public slots: virtual QVariantList requestBacklog(BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); - inline virtual void receiveBacklog(BufferId, MsgId, MsgId, int, int, QVariantList) {}; + virtual QVariantList requestBacklogFiltered( + BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0, 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){}; virtual QVariantList requestBacklogAll(MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); - inline virtual void receiveBacklogAll(MsgId, MsgId, int, int, QVariantList) {}; + 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, MsgId, MsgId, int, int); void backlogAllRequested(MsgId, MsgId, int, int); }; - - -#endif // BACKLOGMANAGER_H