replaced Client::fakeInput() with Client::userInpt() (now static but no longer a...
[quassel.git] / src / client / buffer.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 #include <QDebug>
21
22 #include "buffer.h"
23
24 #include "client.h"
25 #include "util.h"
26
27
28 Buffer::Buffer(BufferInfo bufferid, QObject *parent)
29   : QObject(parent),
30     _bufferInfo(bufferid)
31 {
32 }
33
34 BufferInfo Buffer::bufferInfo() const {
35   // still needed by the gui *sigh* to request the backlogs *sigh*
36   return _bufferInfo;
37 }
38
39 QList<AbstractUiMsg *> Buffer::contents() const {
40   return layoutedMsgs;
41 }
42
43 void Buffer::appendMsg(const Message &msg) {
44   AbstractUiMsg *m = Client::layoutMsg(msg);
45   layoutedMsgs.append(m);
46   emit msgAppended(m);
47 }
48
49 void Buffer::prependMsg(const Message &msg) {
50   layoutQueue.append(msg);
51 }
52
53 bool Buffer::layoutMsg() {
54   if(layoutQueue.count()) {
55     AbstractUiMsg *m = Client::layoutMsg(layoutQueue.takeFirst());
56     layoutedMsgs.prepend(m);
57     emit msgPrepended(m);
58   }
59   return layoutQueue.count();
60 }
61