chatwidget.cpp
413 Bytes
#include "chatwidget.h"
ChatWidget::ChatWidget(QWidget *parent) :
QTextEdit(parent)
{
}
void ChatWidget::printServerMsg(QString &str)
{
this->append("<p style=\"font-style:italic;color:gray;\">" + str + "</p>");
}
void ChatWidget::printMsg(QString &str)
{
this->append(str);
}
void ChatWidget::printStatusMsg(QString &str)
{
this->append("<p style=\"font-weight:bold;\">" + str + "</p>");
}