Renaming some files, mostly.
[quassel.git] / src / qtopia / chatline.cpp
index 28ce89d..3f447d2 100644 (file)
  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  ***************************************************************************/
 
+#include <QtCore>
+
 #include "chatline.h"
+#include "qtopiaui.h"
 
 ChatLine::ChatLine(Message msg) {
-  
+  //_styledSender = QtopiaUi::style()->styleString(msg.formattedSender());
+  //_styledText = QtopiaUi::style()->styleString(msg.formattedText());
+  _timestamp = msg.timestamp();
+  _msgId = msg.msgId();
+  _bufferInfo = msg.buffer();
 
-  
 
 }
 
@@ -39,11 +45,28 @@ MsgId ChatLine::msgId() const {
   return _msgId;
 }
 
-BufferId ChatLine::bufferId() const {
-  return _bufferId;
+BufferInfo ChatLine::bufferInfo() const {
+  return _bufferInfo;
+}
+
+QDateTime ChatLine::timestamp() const {
+  return _timestamp;
+}
+
+QString ChatLine::htmlSender() const {
+  return _htmlSender;
 }
 
-QDateTime ChatLine::timeStamp() const {
-  return _timeStamp;
+QString ChatLine::htmlText() const {
+  return _htmlText;
 }
 
+QString ChatLine::htmlTimestamp() const {
+  return _htmlTimestamp;
+}
+
+
+QString ChatLine::formattedToHtml(const QString &f) {
+   
+  return f;
+}