531fe280d3ae892205f30d7a1f1f735946ace5aa
[quassel.git] / src / qtopia / chatline.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel IRC Development Team             *
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) any later version.                                   *
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 <QtCore>
22
23 #include "chatline.h"
24
25 ChatLine::ChatLine(Message msg) {
26   _text = msg.text();  // FIXME
27   _sender = msg.sender();
28   _timeStamp = msg.timeStamp();
29   _msgId = msg.msgId();
30   _bufferInfo = msg.buffer();
31
32   _htmlSender = formattedToHtml(msg.formattedSender());
33   _htmlText = formattedToHtml(msg.formattedText());
34   _htmlTimeStamp = formattedToHtml(msg.formattedTimeStamp());
35 }
36
37 QString ChatLine::sender() const {
38   return _sender;
39 }
40
41 QString ChatLine::text() const {
42   return _text;
43 }
44
45 MsgId ChatLine::msgId() const {
46   return _msgId;
47 }
48
49 BufferInfo ChatLine::bufferInfo() const {
50   return _bufferInfo;
51 }
52
53 QDateTime ChatLine::timeStamp() const {
54   return _timeStamp;
55 }
56
57 QString ChatLine::htmlSender() const {
58   return _htmlSender;
59 }
60
61 QString ChatLine::htmlText() const {
62   return _htmlText;
63 }
64
65 QString ChatLine::htmlTimeStamp() const {
66   return _htmlTimeStamp;
67 }
68
69
70 QString ChatLine::formattedToHtml(const QString &f) {
71    
72   return f;
73 }