X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorebacklogmanager.h;h=a124016bcce361cb9dc3563c5c5c208fcf7c3de8;hp=0272bbbe39afde7f8308d457da19f55b4887539b;hb=35ca85f1c4371ee28d00d5ff0195a5b44aadb299;hpb=8ec76e512d20ce5d1dc76de556bb98a06b75d695 diff --git a/src/core/corebacklogmanager.h b/src/core/corebacklogmanager.h index 0272bbbe..a124016b 100644 --- a/src/core/corebacklogmanager.h +++ b/src/core/corebacklogmanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * 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,7 +15,7 @@ * 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 COREBACKLOGMANAGER_H @@ -25,21 +25,23 @@ class CoreSession; -class CoreBacklogManager : public BacklogManager { - Q_OBJECT +class CoreBacklogManager : public BacklogManager +{ + SYNCABLE_OBJECT + Q_OBJECT public: - CoreBacklogManager(CoreSession *coreSession = 0); + CoreBacklogManager(CoreSession *coreSession = 0); - virtual const QMetaObject *syncMetaObject() const { return &BacklogManager::staticMetaObject; } - - CoreSession *coreSession() { return _coreSession; } + CoreSession *coreSession() { return _coreSession; } public slots: - virtual QVariantList requestBacklog(BufferId bufferId, int lastMsgs = -1, int offset = -1); + virtual QVariantList requestBacklog(BufferId bufferId, MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); + virtual QVariantList requestBacklogAll(MsgId first = -1, MsgId last = -1, int limit = -1, int additional = 0); private: - CoreSession *_coreSession; + CoreSession *_coreSession; }; + #endif // COREBACKLOGMANAGER_H