atrooney-online-2/aotextarea.cpp

51 lines
1.4 KiB
C++

#include "aotextarea.h"
#include <QScrollBar>
#include <QTextCursor>
#include <QRegExp>
AOTextArea::AOTextArea(QWidget *p_parent) : QTextBrowser(p_parent)
{
}
void AOTextArea::append_chatmessage(QString p_name, QString p_message)
{
const QTextCursor old_cursor = this->textCursor();
const int old_scrollbar_value = this->verticalScrollBar()->value();
const bool is_scrolled_down = old_scrollbar_value == this->verticalScrollBar()->maximum();
this->moveCursor(QTextCursor::End);
this->insertPlainText(p_name + ": ");
QRegExp split_rx("(\\ |\\n)");
QStringList word_list = p_message.split(split_rx);
for (QString i_word : word_list)
{
if (i_word.startsWith("http"))
{
i_word.replace("\r", "");
this->insertHtml("<a href=\"" + i_word + "\">" + i_word + "</a> ");
}
else
this->insertPlainText(i_word + " ");
}
this->insertPlainText("\n");
if (old_cursor.hasSelection() || !is_scrolled_down)
{
// The user has selected text or scrolled away from the bottom: maintain position.
this->setTextCursor(old_cursor);
this->verticalScrollBar()->setValue(old_scrollbar_value);
}
else
{
// The user hasn't selected any text and the scrollbar is at the bottom: scroll to the bottom.
this->moveCursor(QTextCursor::End);
this->verticalScrollBar()->setValue(this->verticalScrollBar()->maximum());
}
}