e0bcfa30ce82c25fea762d398807c42b92e0c811
[quassel.git] / src / client / clientbacklogmanager.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef CLIENTBACKLOGMANAGER_H
22 #define CLIENTBACKLOGMANAGER_H
23
24 #include "backlogmanager.h"
25 #include "message.h"
26
27 class BacklogRequester;
28
29 class ClientBacklogManager : public BacklogManager {
30   Q_OBJECT
31
32 public:
33   ClientBacklogManager(QObject *parent = 0);
34
35   // helper for the backlogRequester, as it isn't a QObject and can't emit itself
36   inline void emitMessagesRequested(const QString &msg) const { emit messagesRequested(msg); }
37
38   void reset();
39
40 public slots:
41   virtual void receiveBacklog(BufferId bufferId, MsgId first, MsgId last, int limit, int additional, QVariantList msgs);
42   virtual void receiveBacklogAll(MsgId first, MsgId last, int limit, int additional, QVariantList msgs);
43   void requestInitialBacklog();
44
45 signals:
46   void messagesReceived(BufferId bufferId, int count) const;
47   void messagesRequested(const QString &) const;
48   void messagesProcessed(const QString &) const;
49
50 private:
51   bool isBuffering();
52   void stopBuffering();
53
54   void dispatchMessages(const MessageList &messages, bool sort = false);
55
56   BacklogRequester *_requester;
57 };
58
59 #endif // CLIENTBACKLOGMANAGER_H