BufferModell::currentChanged() is history. If you need it, file a friendly complaint...
[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 to process user input... *sigh*
36   // ... and for the gui *sigh* to request the backlogs *sigh*
37   return _bufferInfo;
38 }
39
40 QList<AbstractUiMsg *> Buffer::contents() const {
41   return layoutedMsgs;
42 }
43
44 void Buffer::appendMsg(const Message &msg) {
45   AbstractUiMsg *m = Client::layoutMsg(msg);
46   layoutedMsgs.append(m);
47   emit msgAppended(m);
48 }
49
50 void Buffer::prependMsg(const Message &msg) {
51   layoutQueue.append(msg);
52 }
53
54 bool Buffer::layoutMsg() {
55   if(layoutQueue.count()) {
56     AbstractUiMsg *m = Client::layoutMsg(layoutQueue.takeFirst());
57     layoutedMsgs.prepend(m);
58     emit msgPrepended(m);
59   }
60   return layoutQueue.count();
61 }
62
63 void Buffer::processUserInput(QString msg) {
64   // TODO User Input processing (plugins) -> well, this goes through MainWin into Core for processing... so...
65   emit userInput(_bufferInfo, msg);
66 }
67