fc7ecc3b8bc9434b180f5a0cfff96c7a79457044
[quassel.git] / src / qmlui / qmlmessagemodel.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2011 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 #include <QtDeclarative>
22
23 #include "qmlmessagemodel.h"
24 #include "qmlchatline.h"
25
26 QmlMessageModel::QmlMessageModel(QObject *parent)
27   : MessageModel(parent)
28 {
29   QmlChatLine::registerTypes();
30
31   QHash<int, QByteArray> roles;
32   roles[ChatLineDataRole] = "chatLineDataRole";
33   setRoleNames(roles);
34 }
35
36 void QmlMessageModel::insertMessages__(int pos, const QList<Message> &messages) {
37   for(int i = 0; i < messages.count(); i++) {
38     _messageList.insert(pos, QmlMessageModelItem(messages[i]));
39     pos++;
40   }
41 }
42
43 Message QmlMessageModel::takeMessageAt(int i) {
44   Message msg = _messageList[i].message();
45   _messageList.removeAt(i);
46   return msg;
47 }
48
49 QVariant QmlMessageModel::data(const QModelIndex &index, int role) const {
50   int row = index.row();
51   if(row < 0 || row >= messageCount())
52     return QVariant();
53
54   return messageItemAt(row)->data(index.column(), role);
55 }