mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
46f432890f
Message now stores a copy of the content string Use .nick() instead of .account() to get the users lowercase name (login name)
39 lines
845 B
C++
39 lines
845 B
C++
#include "messages/word.h"
|
|
|
|
namespace chatterino {
|
|
namespace messages {
|
|
|
|
// Image word
|
|
Word::Word(LazyLoadedImage *image, Type type, const QString ©text,
|
|
const QString &tooltip, const Link &link)
|
|
: image(image)
|
|
, text()
|
|
, color()
|
|
, _isImage(true)
|
|
, type(type)
|
|
, copyText(copytext)
|
|
, tooltip(tooltip)
|
|
, link(link)
|
|
, characterWidthCache()
|
|
{
|
|
image->getWidth(); // professional segfault test
|
|
}
|
|
|
|
// Text word
|
|
Word::Word(const QString &text, Type type, const QColor &color,
|
|
const QString ©text, const QString &tooltip, const Link &link)
|
|
: image(NULL)
|
|
, text(text)
|
|
, color(color)
|
|
, _isImage(false)
|
|
, type(type)
|
|
, copyText(copytext)
|
|
, tooltip(tooltip)
|
|
, link(link)
|
|
, characterWidthCache()
|
|
{
|
|
}
|
|
|
|
} // namespace messages
|
|
} // namespace chatterino
|